/* Author: 

*/

$(document).ready(function() {

    $('.viewport').mouseenter(function(e) {
        $(this).children('a').children('img').animate({ height: '100', left: '0', top: '0', width: '632'}, 100);
        $(this).children('a').children('span').fadeIn(200);
    }).mouseleave(function(e) {
        $(this).children('a').children('img').animate({ height: '108', left: '-25', top: '-4', width: '682'}, 100);
        $(this).children('a').children('span').fadeOut(200);
    });


    $('.viewport_big').mouseenter(function(e) {
        $(this).children('a').children('img').animate({ height: '400', left: '0', top: '0', width: '632'}, 100);
        $(this).children('a').children('span').fadeIn(200);
    }).mouseleave(function(e) {
        $(this).children('a').children('img').animate({ height: '413', left: '-13', top: '-6.5', width: '658'}, 100);
        $(this).children('a').children('span').fadeOut(200);
    });
    
    
    
  
	/*fancybox*/		
	$('.iframe#vid').each(function(i){
		$(this).fancybox({
	        'width'				: 640,
	        'height'			: 510,
	        'autoScale'			: false,
	        'transitionIn'		: 'elastic',
	        'transitionOut'		: 'elastic',
	        'type'				: 'iframe' ,
	        'overlayColor'      : '#000' ,
	        'overlayOpacity'    : 0.8
		});
	});
	
});






















