$(document).ready(function(){

	//Full Caption Sliding (Hidden to Visible)
	$('.boxgrid.captionfull').hover(function(){
	$(".cover", this).stop().animate({bottom:'20px',left:'0%'},{queue:false,duration:160});
	}, function() {
	$(".cover", this).stop().animate({bottom:'20px',left:'100%'},{queue:false,duration:160});
	});

});