$j(document).ready(function(){
				//To switch directions up/down and left/right just place a "-" in front of the top/left attribute
				
			
		//Caption Sliding (Partially Hidden to Visible)
				$j('.boxgrid.caption').hover(function(){
					$j(".cover", this).stop().animate({top:'125px'},{queue:false,duration:100});
				}, function() {
					$j(".cover", this).stop().animate({top:'180px'},{queue:false,duration:130});
				});
	
			
				//Caption Sliding (Partially Hidden to Visible)
				$j('.boxgrid2.caption').hover(function(){
					$j(".cover", this).stop().animate({top:'125px'},{queue:false,duration:100});
				}, function() {
					$j(".cover", this).stop().animate({top:'180px'},{queue:false,duration:130});
				});
			});
