$(document).ready(function(){

	//Caption Sliding (Partially Hidden to Visible)
	$('.boxgrid.caption').hover(function(){
		$(".cover", this).stop().animate({top:'165px'},{queue:false,duration:160});
	}, function() {
		$(".cover", this).stop().animate({top:'242px'},{queue:false,duration:160});
	});
	//Caption Sliding (Partially Hidden to Visible)
	$('.boxgridsmall.captionsmall').hover(function(){
		$(".coversmall", this).stop().animate({top:'165px'},{queue:false,duration:160});
	}, function() {
		$(".coversmall", this).stop().animate({top:'242px'},{queue:false,duration:160});
	});
});