	$(document).ready(
		function(){
			
			$("#navigazione li .selected").css("background-position", "center");
			
			$("#navigazione li .normal").hover( 
				function(){
					$(this).css("background-position", "bottom");
					return false;
				},
				function(){
					$(this).css("background-position", "top");
					return false;
				}
			);
			
		}
	);
	