			$(document).ready(function(){
				//To switch directions up/down and left/right just place a "-" in front of the top/left attribute
				//Vertical Sliding
				//Full Caption Sliding (Hidden to Visible)
				$('.boxgrid.thecombo').hover(function(){
					$(".cover", this).stop().animate({top:'465px', left:'1024px'},{queue:false,duration:400});
				}, function() {
					$(".cover", this).stop().animate({top:'0px', left:'0px'},{queue:false,duration:400});
				});
				$('.boxgrid.captionfull').hover(function(){
					$(".cover", this).stop().animate({top:'101px'},{queue:false,duration:400});
				}, function() {
					$(".cover", this).stop().animate({top:'141px'},{queue:false,duration:400});
				});
				//Caption Sliding (Partially Hidden to Visible)
				$('.boxgrid.caption').hover(function(){
					$(".cover", this).stop().animate({top:'41px'},{queue:false,duration:400});
				}, function() {
					$(".cover", this).stop().animate({top:'101px'},{queue:false,duration:400});
				});
				$('.bigimage.captionfull').hover(function(){
					$(".cover", this).stop().animate({top:'425px'},{queue:false,duration:400});
				}, function() {
					$(".cover", this).stop().animate({top:'465px'},{queue:false,duration:400});
				});
				//Caption Sliding (Partially Hidden to Visible)
				$('.bigimage.caption').hover(function(){
					$(".cover", this).stop().animate({top:'350px'},{queue:false,duration:400});
				}, function() {
					$(".cover", this).stop().animate({top:'425px'},{queue:false,duration:400});
				});

				$('.boxgrid.captionactive').hover(function(){
					$(".cover", this).stop().animate({top:'41px'},{queue:false,duration:400});
				}, function() {
					$(".cover", this).stop().animate({top:'101px'},{queue:false,duration:400});
				});
				
			});
