$().ready(function(){
	$(".Menu a").mouseover(function(){
		$(this).animate({ backgroundColor: "#ff9900", color: "#000000" }, 1000);
	});
	$(".Menu a").mouseout(function(){
		$(this).stop();
		$(this).css("background-color","");
		$(this).css("color","");
	});
	
	$(".Right.Prodotti a").mouseover(function(){
		$(this).animate({ backgroundColor: "#ff9900", color: "#000000" }, 1000);
	});
	$(".Right.Prodotti a").mouseout(function(){
		$(this).stop();
		$(this).css("background-color","");
		$(this).css("color","");
	});	
});
