$(document).ready(function() {		
	$('.boxgrid .cover').fadeTo("fast", 0.7); 
	$('.boxgrid').hover(function(){
		$(".cover", this).stop().animate({top:'-6px'},{queue:false,duration:200});
		$(this).fadeTo("fast", 0.5).fadeTo("fast", 1);
	}, function() {
		$(".cover", this).stop().animate({top:'0px'},{queue:false,duration:200});
	});
});
