$(document).ready(function() {

		//menu verticale
		$('#verMenu li a').hover(
			function () {
				
				height = $(this).height() * (-1);
				var stato = $(this).attr('id'); //Blocco l'effetto animate RollOver se lo stato=selected
				
				if(stato !="selected")
				{
					$(this).stop().animate({'backgroundPosition':'(0 ' + height + ')'}, {duration:200});
				}
			}, 
			
			function () {
				
				var stato = $(this).attr('id'); //Blocco l'effetto animate RollOver se lo stato=selected
				if(stato != "selected")
				{
					$(this).stop().animate({'backgroundPosition':'(0 0)'}, {duration:200});	
				}
			}
		);
		
		//menu orizzontale
		$('#orMenu li a').hover(
			function () {
				height = $(this).height() * (-1);
				var stato = $(this).attr('id');
				
				if(stato !="selected")
				{
				$(this).stop().animate({'backgroundPosition':'(0 ' + height + ')'}, {duration:200});	
				}
			}, 
			
			function () {
				
				var stato = $(this).attr('id'); //Blocco l'effetto animate RollOver se lo stato=selected
				if(stato !="selected")
				{
				$(this).stop().animate({'backgroundPosition':'(0 0)'}, {duration:200});	
				}
			}
		);
		
});
