			$j(document).ready(function(){
				//To switch directions up/down and left/right just place a "-" in front of the top/left attribute

				//Slowly slide up
				$j('.boxgrid.upslide').hover(function(){
					$j(".cover", this).stop().animate({top:'313px'},{queue:false,duration:240});
				}, function() {
					$j(".cover", this).stop().animate({top:'168px'},{queue:false,duration:240});
				});

				//Slowly slide up
				$j('.boxgridLower.upslide').hover(function(){
					$j(".cover", this).stop().animate({top:'442px'},{queue:false,duration:240});
				}, function() {
					$j(".cover", this).stop().animate({top:'295px'},{queue:false,duration:240});
				});
	
			});

