$(document).ready(function() {
	
	$('#featured_gallery').cycle({
		delay:  1000, 
    	speed:  3000,
		timeout:4000
	});

	$('.boxgrid.captionfull').hover(function(){
					$(".cover", this).stop().animate({top:'130px'},{queue:false,duration:160});
				}, function() {
					$(".cover", this).stop().animate({top:'195px'},{queue:false,duration:160});
				});
});