
//To switch directions up/down and left/right just place a "-" in front of the top/left attribute

$(document).ready(function(){
//Full Caption Sliding (Hidden to Visible)
	$('.boxgrid.captionfull').hover(function(){
		$(".cover", this).stop().animate({top:'70px'},{queue:false,duration:100});
	}, function() {
		$(".cover", this).stop().animate({top:'150px'},{queue:false,duration:200});
	});
});
