$(document).ready(function(){
	$('.boxgrid-small').hover(function(){
		$(".cover", this).stop().animate({left:'0px'},{queue:false,duration:300});
	}, function() {
		$(".cover", this).stop().animate({left:'-110px'},{queue:false,duration:300});
	});

});

$(document).ready(function(){
	$('.boxgrid-normal').hover(function(){
		$(".cover", this).stop().animate({top:'0px'},{queue:false,duration:160});
		$(".cover h3", this).toggle();
	}, function() {
		$(".cover", this).stop().animate({top:'120px'},{queue:false,duration:160});
		$(".cover h3", this).toggle();
	});
});

