			$(document).ready(function(){
				$('.boxgrid.slideup').hover(function(){
					$(".cover", this).stop().animate({top:'-190px'},{queue:false,duration:300});
				}, function() {
					$(".cover", this).stop().animate({top:'0px'},{queue:false,duration:300});
				});
				$('.boxgrid.slidedown').hover(function(){
					$(".cover", this).stop().animate({top:'190px'},{queue:false,duration:300});
				}, function() {
					$(".cover", this).stop().animate({top:'0px'},{queue:false,duration:300});
				});
				$('.boxgrid.slideleft').hover(function(){
					$(".cover", this).stop().animate({left:'-260px'},{queue:false,duration:300});
				}, function() {
					$(".cover", this).stop().animate({left:'0px'},{queue:false,duration:300});
				});
				$('.boxgrid.slideright').hover(function(){
					$(".cover", this).stop().animate({left:'260px'},{queue:false,duration:300});
				}, function() {
					$(".cover", this).stop().animate({left:'0px'},{queue:false,duration:300});
				});
				$('.boxgrid.slidedownleft').hover(function(){
					$(".cover", this).stop().animate({left:'-260px',top:'190px'},{queue:false,duration:300});
				}, function() {
					$(".cover", this).stop().animate({left:'0px',top:'0px'},{queue:false,duration:300});
				});
				$('.boxgrid.slidedownright').hover(function(){
					$(".cover", this).stop().animate({left:'260px',top:'190px'},{queue:false,duration:300});
				}, function() {
					$(".cover", this).stop().animate({left:'0px',top:'0px'},{queue:false,duration:300});
				});
			});
