$(document).ready(function(){

    //When Mouse rolls over li
    $(".menuEspansioneElement").mouseover(function(){
        $(this).stop().animate({height:'90px'},{queue:false, duration:600, easing: 'easeOutBounce'})
    });

    //When Mouse cursor removed from li
    $(".menuEspansioneElement").mouseout(function(){
        $(this).stop().animate({height:'40px'},{queue:false, duration:600, easing: 'easeOutBounce'})
    });
    
//	Script per la gestione del clik sul menu espandibile
	$(".menuEspansioneElement").click(function(){
		var id = $(this).attr("id");
		id = id.replace("menuEsp_", "");
		
		document.location.href = baseUrl+"/"+lang+'/'+id;
	});

});
