$(document).ready(function() {
	
	$(".iframe").fancybox({
  		'width'			:    600,
		'height'		:    338,	
});
$(".box").fancybox({
		'transitionIn'	:	'fade',
		'transitionOut'	:	'fade',
		'speedIn'		:	400, 
		'speedOut'		:	150, 
		'overlayShow'	:	true,
		'changeSpeed'   :   200,
	});
	$(".gallery_box").krioImageLoader();
	
	$('.boxgrid.peek').hover(function(){
		$(".cover", this).stop().animate({top:'30px'},{queue:false,duration:160});
		}, function() {
		$(".cover", this).stop().animate({top:'0px'},{queue:false,duration:160});
	});
	
});
