	
			jQuery(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:'-120px'},{queue:false,duration:300});
				}, function() {
					$(".cover", this).stop().animate({top:'0px'},{queue:false,duration:300});
				});
				//Horizontal Sliding
				$('.boxgrid.slideright').hover(function(){
					$(".cover", this).stop().animate({left:'180px'},{queue:false,duration:300});
				}, function() {
					$(".cover", this).stop().animate({left:'0px'},{queue:false,duration:300});
				});
				//Diagnal Sliding
				$('.boxgrid.thecombo').hover(function(){
					$(".cover", this).stop().animate({top:'120px', left:'180px'},{queue:false,duration:300});
				}, function() {
					$(".cover", this).stop().animate({top:'0px', left:'0px'},{queue:false,duration:300});
				});
				//Partial Sliding (Only show some of background)
				$('.boxgrid.peek').hover(function(){
					$(".cover", this).stop().animate({top:'90px'},{queue:false,duration:160});
				}, function() {
					$(".cover", this).stop().animate({top:'0px'},{queue:false,duration:160});
				});
				//Full Caption Sliding (Hidden to Visible)
				$('.boxgrid.captionfull').hover(function(){
					$(".cover", this).stop().animate({top:'60px'},{queue:false,duration:160});
				}, function() {
					$(".cover", this).stop().animate({top:'120px'},{queue:false,duration:160});
				});
				//Caption Sliding (Partially Hidden to Visible)
				$('.boxgrid.caption').hover(function(){
					$(".cover", this).stop().animate({top:'60px'},{queue:false,duration:160});
				}, function() {
					$(".cover", this).stop().animate({top:'100px'},{queue:false,duration:160});
				});
				//Fade effect
				$('.boxgrid.fadeout').hover(function(){
					$(".cover", this).stop().animate({opacity:'0'},{queue:false,duration:160});
				}, function() {
					$(".cover", this).stop().animate({opacity:'1'},{queue:false,duration:160});
				});

				$('.boxgrid.fadeout').hover(function(){
					$(".desc", this).stop().animate({top:'55px'},{queue:false,duration:160});
				}, function() {
					$(".desc", this).stop().animate({top:'120px'},{queue:false,duration:160});
				});
			});




			jQuery(document).ready(function($){
				//To switch directions up/down and left/right just place a "-" in front of the top/left attribute
				//Vertical Sliding
				$('.productgrid.slidedown').hover(function(){
					$(".cover", this).stop().animate({top:'-180px'},{queue:false,duration:300});
				}, function() {
					$(".cover", this).stop().animate({top:'0px'},{queue:false,duration:300});
				});
				//Horizontal Sliding
				$('.productgrid.slideright').hover(function(){
					$(".cover", this).stop().animate({left:'180px'},{queue:false,duration:300});
				}, function() {
					$(".cover", this).stop().animate({left:'0px'},{queue:false,duration:300});
				});
				//Diagnal Sliding
				$('.productgrid.thecombo').hover(function(){
					$(".cover", this).stop().animate({top:'180px', left:'180px'},{queue:false,duration:300});
				}, function() {
					$(".cover", this).stop().animate({top:'0px', left:'0px'},{queue:false,duration:300});
				});
				//Partial Sliding (Only show some of background)
				$('.productgrid.peek').hover(function(){
					$(".cover", this).stop().animate({top:'120px'},{queue:false,duration:160});
				}, function() {
					$(".cover", this).stop().animate({top:'0px'},{queue:false,duration:160});
				});
				//Full Caption Sliding (Hidden to Visible)
				$('.productgrid.captionfull').hover(function(){
					$(".cover", this).stop().animate({top:'0px'},{queue:false,duration:160});
				}, function() {
					$(".cover", this).stop().animate({top:'180px'},{queue:false,duration:160});
				});
				//Caption Sliding (Partially Hidden to Visible)
				$('.productgrid.caption').hover(function(){
					$(".cover", this).stop().animate({top:'0px'},{queue:false,duration:240});
					/*$(".cover", this).stop().animate({top:'125px'},{queue:false,duration:240});*/
				}, function() {
					$(".cover", this).stop().animate({top:'189px'},{queue:false,duration:320});
				});
				//Fade effect
				$('.productgrid.fadeout').hover(function(){
					$(".cover", this).stop().animate({opacity:'0'},{queue:false,duration:160});
				}, function() {
					$(".cover", this).stop().animate({opacity:'1'},{queue:false,duration:160});
				});

				$('.productgrid.fadeout').hover(function(){
					$(".desc", this).stop().animate({top:'95px'},{queue:false,duration:160});
				}, function() {
					$(".desc", this).stop().animate({top:'180px'},{queue:false,duration:160});
				});
			});

