$(document).ready(function(){  
    //Caption Sliding (Partially Hidden to Visible)  
    $('.boxgrid.caption').hover(function(){  
        $(".cover", this).stop().animate({top:'220px'},{queue:false,duration:160});  
    }, function() {  
        $(".cover", this).stop().animate({top:'262px'},{queue:false,duration:160});  
    });  
		
		/* Apply fancybox to multiple items */
		$("a.featured").fancybox({
			'hideOnContentClick': true,
			'transitionIn'	:	'fade',
			'transitionOut'	:	'fade',
			'speedIn'		:	900, 
			'speedOut'		:	900, 
			'overlayShow'	:	true
		});
});
