// JavaScript Document
       $(document).ready(function() { 
        $('ul.sf-menu').superfish({
            delay:       400, 
            speed:       0,                          
            autoArrows:  false,
            dropShadows: false,
			pathClass: 'current'
	
        });
		$('.sf-menu a').mouseover(function() {
			$('.sf-menu a').removeClass('hover')
			$(this).addClass('hover');	
		});
		$('.sf-menu a').mouseout(function() {
			$(this).removeClass('hover')
		});
		$("#notelegali").mouseover(function(){
			$("#notelegalibox").show();
		}).mouseout(function(){
			$("#notelegalibox").hide();
		});
		$("#notelegalibox").mouseover(function(){
			$("#notelegalibox").show();
		}).mouseout(function(){
			$("#notelegalibox").hide();
		});
		$("#menu_lingue select").change(function () {
				//alert ($(this).val());
				window.location = $(this).val();
			  
		})
		if($.browser.msie){
			var brow="IE";
			var versione = brow+$.browser.version.substring(0,1);	
			if (versione == "IE6") {
				$('<div id="alert_ie"><div id="alert_ie_int"><p>Questo sito &egrave; ottimizzato per browser di nuova generazione. </p><p>Utilizza a scelta versioni recenti di<br/> Internet Explorer, Firefox, Safari o Chrome.</p><p>Scarica: &raquo; <a href="http://www.microsoft.com/italy/windows/internet-explorer/worldwide-sites.aspx" target="_blank">Internet Explorer 8</a> &raquo; <a href="http://www.mozilla-europe.org/it/firefox/" target="_blank">Firefox</a> &raquo; <a href="http://www.google.com/chrome?hl=it" target="_blank">Chrome</a>  &raquo; <a href="http://www.apple.com/it/safari/" target="_blank">Safari</a></p></div></div>').appendTo("#contenitore");
				$(".sf-menu").hide();
				$("#menuup_dx").hide();
				
			}
		}
		$(".sf-menu").show();
    }); 


