// SOTTO LOGIN
$(document).ready(function() {
	
	// menù left
	if($("#login-over").hover(
		function () {
			$("#sottologin").stop().animate({marginRight: "150px"});
			$("#hide-sottologin").fadeIn();
	      },
		function () {
	    	$("#sottologin").stop().animate({marginRight: "5px"});
	    	$("#hide-sottologin").fadeOut();
	      }
		)
	);

});
