$(document).ready(function(){
	//To switch directions up/down and left/right just place a "-" in front of the top/left attribute
	//Vertical Sliding
	//Full Caption Sliding (Hidden to Visible) SLIDE GRANDE
	$('.boxgrid.captionfull').hover(function(){
		$(".cover", this).stop().animate({top:'460px'},{queue:false,duration:160});
	}, function() {
		$(".cover", this).stop().animate({top:'660px'},{queue:false,duration:160});
	});
	
	//Full Caption Sliding (Hidden to Visible) SLIDE PICCOLO
	$('.boxgrid2.captionfull2').hover(function(){
		$(".cover2", this).stop().animate({top:'180px'},{queue:false,duration:160});
	}, function() {
		$(".cover2", this).stop().animate({top:'300px'},{queue:false,duration:160});
	});
});

