$(document).ready(function(){
				//To switch directions up/down and left/right just place a "-" in front of the top/left attribute
				//Vertical Sliding
				$('.boxgrid_left.ani_01').hover(function(){
					$(".cover", this).stop().animate({top:'125px'},{queue:false,duration:300});
				}, function() {
					$(".cover", this).stop().animate({top:'202px'},{queue:false,duration:300});
				});
				//Horizontal Sliding
				$('.boxgrid.ani_02').hover(function(){
					$(".cover", this).stop().animate({top:'70px'},{queue:false,duration:366});
				}, function() {
					$(".cover", this).stop().animate({top:'202px'},{queue:false,duration:366});
				});
				//Diagnal Sliding
				$('.boxgrid.ani_03').hover(function(){
					$(".cover", this).stop().animate({left:'0px'},{queue:false,duration:400});
				}, function() {
					$(".cover", this).stop().animate({left:'253px'},{queue:false,duration:400});
				});
				//Partial Sliding (Only show some of background)
				$('.boxgrid_left.ani_04').hover(function(){
					$(".cover", this).stop().animate({top:'0px', left:'0px'},{queue:false,duration:400});
				}, function() {
					$(".cover", this).stop().animate({top:'202px', left:'253px'},{queue:false,duration:400});
				});
				//Full Caption Sliding (Hidden to Visible)
				$('.boxgrid.ani_05').hover(function(){
					$(".cover", this).stop().animate({top:'0px'},{queue:false,duration:400});
				}, function() {
					$(".cover", this).stop().animate({top:'-202px'},{queue:false,duration:400});
				});
				//Caption Sliding (Partially Hidden to Visible)
				$('.boxgrid.ani_06').hover(function(){
					$(".cover", this).stop().animate({top:'-120px'},{queue:false,duration:300});
				}, function() {
					$(".cover", this).stop().animate({top:'-202px'},{queue:false,duration:300});
				});
			});
