// JavaScript Document
			$(document).ready(function(){
				//To switch directions up/down and left/right just place a "-" in front of the top/left attribute
				//Down Sliding
				$('.boxgrid.slidedown').hover(function(){
					$(".cover", this).stop().animate({top:'101px', left:'0px'},{queue:false,duration:300});
				}, function() {
					$(".cover", this).stop().animate({top:'0px', left:'0px'},{queue:false,duration:300});
				});
				//Up Sliding
				$('.boxgrid.slideup').hover(function(){
					$(".cover", this).stop().animate({top:'-101px', left:'0px'},{queue:false,duration:300});
				}, function() {
					$(".cover", this).stop().animate({top:'0px', left:'0px'},{queue:false,duration:300});
				});
				//Right Sliding
				$('.boxgrid.slideright').hover(function(){
					$(".cover", this).stop().animate({top:'0px', left:'152px'},{queue:false,duration:300});
				}, function() {
					$(".cover", this).stop().animate({top:'0px', left:'0px'},{queue:false,duration:300});
				});
				//Left Sliding
				$('.boxgrid.slideleft').hover(function(){
					$(".cover", this).stop().animate({top:'0px', left:'-152px'},{queue:false,duration:300});
				}, function() {
					$(".cover", this).stop().animate({top:'0px', left:'0px'},{queue:false,duration:300});
				});
			});
