	$(document).ready(function(){
		
				$('.boxgrid.caption').hover(function(){
					$(".cover", this).stop().animate({left:'0px'},{queue:false,duration:800});
				}, function() {
					$(".cover", this).stop().animate({left:'-90%'},{queue:false,duration:800});
				});
			});
