$(document).ready(function(){
	 $('.slideshow').cycle({
		fx:     'fade', 
		speed:   600, 
		timeout: 3000, 
		next:   '#s3', 
		pause:   1,
		before: function() {
			$(".cover", '.boxgrid.captionfull').stop().animate({top:'306px'},{queue:false,duration:0});
			$(".cover", '.boxgrid.captionfull').height( '100%' );
			$('#bc1').height( );
			$(".cover", '.boxgrid.captionfull').play().animate({top:'306px'},{queue:false,duration:0});
		}
	});


	//Full Caption Sliding (Hidden to Visible)
	$('.boxgrid.captionfull').hover(function(){
		$(".cover", this).stop().animate({top:'160px'},{queue:false,duration:160});
	}, function() {
		$(".cover", this).stop().animate({top:'306px'},{queue:false,duration:160});
	});
				
});
