
			$(document).ready(function(){
				//To switch directions up/down and left/right just place a "-" in front of the top/left attribute
				//Vertical Sliding YES
				$('.boxgridprod.slidedown').hover(function(){
					$(".cover", this).stop().animate({top:'-210px'},{queue:false,duration:300});
				}, function() {
					$(".cover", this).stop().animate({top:'0px'},{queue:false,duration:300});
				});
				//Horizontal Sliding YES fliesst von links ein
				$('.boxgridprod.slideright').hover(function(){ 
					$(".cover", this).stop().animate({left:'-183px'},{queue:false,duration:300});
				}, function() {
					$(".cover", this).stop().animate({left:'0px'},{queue:false,duration:300});
				});
				//Diagonal Sliding YES slider diagonal
				$('.boxgridprod.thecombo').hover(function(){
					$(".cover", this).stop().animate({top:'210px', left:'183px'},{queue:false,duration:300});
				}, function() {
					$(".cover", this).stop().animate({top:'0px', left:'0px'},{queue:false,duration:300});
				});
				//Partial Sliding (Only show some of background) YES mit hintergrundbild
				$('.boxgridprod.peek').hover(function(){
					$(".cover", this).stop().animate({top:'70px'},{queue:false,duration:160});
				}, function() {
					$(".cover", this).stop().animate({top:'0px'},{queue:false,duration:160});
				});
				//Full Caption Sliding (Hidden to Visible) YES transparenz vollständig
				$('.boxgridprod.captionfull').hover(function(){
					$(".cover", this).stop().animate({top:'110px'},{queue:false,duration:160});
				}, function() {
					$(".cover", this).stop().animate({top:'210px'},{queue:false,duration:160});
				});
				//Caption Sliding (Partially Hidden to Visible) YES transparenz mit titel
				$('.boxgridprod.caption').hover(function(){
					$(".cover", this).stop().animate({top:'100px'},{queue:false,duration:160});
				}, function() {
					$(".cover", this).stop().animate({top:'175px'},{queue:false,duration:160});
				});
			});
		
		
