// 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:'136px', left:'5px'},{queue:false,duration:300});
				}, function() {
					$(".cover", this).stop().animate({top:'0px', left:'5px'},{queue:false,duration:300});
				});
				//Up Sliding
				$('.boxgrid.slideup').hover(function(){
					$(".cover", this).stop().animate({top:'-136px', left:'5px'},{queue:false,duration:300});
				}, function() {
					$(".cover", this).stop().animate({top:'0px', left:'5px'},{queue:false,duration:300});
				});
				//Right Sliding
				$('.boxgrid.slideright').hover(function(){
					$(".cover", this).stop().animate({top:'0px', left:'139px'},{queue:false,duration:300});
				}, function() {
					$(".cover", this).stop().animate({top:'0px', left:'5px'},{queue:false,duration:300});
				});
				//Left Sliding
				$('.boxgrid.slideleft').hover(function(){
					$(".cover", this).stop().animate({top:'0px', left:'-139px'},{queue:false,duration:300});
				}, function() {
					$(".cover", this).stop().animate({top:'0px', left:'5px'},{queue:false,duration:300});
				});
				//Diagnal Sliding  
    			$('.boxgrid.thecombo').hover(function(){  
        			$(".cover", this).stop().animate({top:'131px', left:'139px'},{queue:false,duration:300});  
    			}, function() {  
        			$(".cover", this).stop().animate({top:'0px', left:'5px'},{queue:false,duration:300});  
    			});  
				    //Full Caption Sliding (Hidden to Visible)  
    			$('.boxgrid.captionfull').hover(function(){  
        			$(".cover", this).stop().animate({top:'50px'},{queue:false,duration:300});  
    			}, function() {  
        			$(".cover", this).stop().animate({top:'136px'},{queue:false,duration:300});  
    			}); 
			});
