/* GESTIONE MENU OVER E SELEZIONE */
$(document).ready(function () {

	//if mouseover the menu item
	$('.menu li').hover(function () {
		$(this).addClass('menu_over');
		//alert('over');
	})
	//If the mouse leave the menu item
	$('.menu li').mouseleave(function () {
		$(this).removeClass('menu_over');
		//alert('out');
	});
	
});
