$(document).ready(function(){				
				
				
				$('.boxgrid.peek').hover(function()
				{
					$(".cover1", this).stop().animate({left:'-45px'},{queue:false,duration:750});
				}, 
				function() 
				{
					$(".cover1", this).stop().animate({left:'0px'},{queue:false,duration:750});
				});
				
				$('.boxgrid.peek').hover(function()
				{
					$(".cover", this).stop().animate({left:'175px'},{queue:false,duration:750});
				}, 
				function() 
				{
					$(".cover", this).stop().animate({left:'80px'},{queue:false,duration:750});
				});
				//Full Caption Sliding (Hidden to Visible)
				
			});