// Sliding Boxes

$(document).ready(function(){
	//To switch directions up/down and left/right just place a "-" in front of the top/left attribute
	//Full Caption Sliding (Hidden to Visible)
	$('.boxgrid.captionfulllarge').hover(function(){
		$(".cover", this).stop().animate({top:'230px'},{queue:false,duration:300}, {easing : 'easeInQuad',duration:300});
	}, function() {
		$(".cover", this).stop().animate({top:'330px'},{queue:false,duration:300}, {easing : 'easeInQuad',duration:300});
	});
	$('.boxgrid.captionfullsmall').hover(function(){
		$(".cover", this).stop().animate({top:'75px'},{queue:false,duration:200}, {easing : 'easeInQuad',duration:200});
	}, function() {
		$(".cover", this).stop().animate({top:'150px'},{queue:false,duration:200}, {easing : 'easeInQuad',duration:200});
	});
});
