			$(document).ready(function(){
				//il barra è visibile sempre senza animazione
				$('.boxgrid.boxspot').hover(function(){
					$(".cover", this).stop().animate({top:'260px'},{queue:false,duration:160});
				}, function() {
					$(".cover", this).stop().animate({top:'260px'},{queue:false,duration:160});
				});
			});

