// JavaScript per FitetMilano.org

$(function(){

$("#menu a").hover(function(){
		$(this).stop().animate({paddingLeft: "10px"}, 300);}, function(){
		$(this).stop().animate({paddingLeft: "0px"}, 300);});
});