$(document).ready(function(){
	$(".cover", this).stop().animate({top:'324px'},{queue:false,duration:0});
	//Full Caption Sliding (Hidden to Visible)
	$('.boxgrid.captionfull').hover(function(){
		$(".cover", this).stop().animate({top:'224px'},{queue:false,duration:160});
	}, function() {
		$(".cover", this).stop().animate({top:'324px'},{queue:false,duration:160});
	});
	$('.homegrid.captionfull').hover(function(){
		$(".cover", this).stop().animate({top:'0px'},{queue:false,duration:160});
	}, function() {
		$(".cover", this).stop().animate({top:'177px'},{queue:false,duration:160});
	});
});