$(document).ready(function(){
	$('.boxgrid.slidedown').hover(function(){
		$(".cover", this).stop().animate({top:'0px'},{queue:false,duration:2400});
	}, function() {
		$(".cover", this).stop().animate({top:'-260px'},{queue:false,duration:300});
	});
	//Horizontal Sliding
	$('.boxgrid.slideright').hover(function(){
		$(".cover", this).stop().animate({left:'0px'},{queue:false,duration:600});
	}, function() {
		$(".cover", this).stop().animate({left:'-325px'},{queue:false,duration:300});
	}); 
	//Full Caption Sliding (Hidden to Visible)
	$('.boxgrid.captionfull').hover(function(){
		$(".cover", this).stop().animate({top:'160px'},{queue:false,duration:160});
	}, function() {
		$(".cover", this).stop().animate({top:'260px'},{queue:false,duration:160});
	});
});

