			$(document).ready(function(){
				//To switch directions up/down and left/right just place a "-" in front of the top/left attribute
				//Vertical Sliding
				$('.boxgrid.slidedown').hover(function(){
					$(".cover", this).stop().animate({top:'270px'},{queue:false,duration:300});
				}, function() {
					$(".cover", this).stop().animate({top:'0px'},{queue:false,duration:300});
				});
				//Full Caption Sliding (Hidden to Visible)
				$('.boxgrid.captionfull').hover(function(){
					$(".cover", this).stop().animate({top:'220px'},{queue:false,duration:160});
				}, function() {
					$(".cover", this).stop().animate({top:'270px'},{queue:false,duration:160});
				});
				//Vertical Sliding (270_405)
				$('.boxgrid270_405.slidedown').hover(function(){
					$(".cover", this).stop().animate({top:'405px'},{queue:false,duration:300});
				}, function() {
					$(".cover", this).stop().animate({top:'0px'},{queue:false,duration:300});
				});
				//Full Caption Sliding (Hidden to Visible) (270_405)
				$('.boxgrid270_405.captionfull').hover(function(){
					$(".cover", this).stop().animate({top:'355px'},{queue:false,duration:160});
				}, function() {
					$(".cover", this).stop().animate({top:'405px'},{queue:false,duration:160});
				});
				//Vertical Sliding (135_202)
				$('.boxgrid135_202.slidedown').hover(function(){
					$(".cover", this).stop().animate({top:'202px'},{queue:false,duration:300});
				}, function() {
					$(".cover", this).stop().animate({top:'0px'},{queue:false,duration:300});
				});
				//Full Caption Sliding (Hidden to Visible) (135_202)
				$('.boxgrid135_202.captionfull').hover(function(){
					$(".cover", this).stop().animate({top:'152px'},{queue:false,duration:160});
				}, function() {
					$(".cover", this).stop().animate({top:'202px'},{queue:false,duration:160});
				});
			});



