// JavaScript Document

$(document).ready(function(){ 
  $(document).pngFix(); 

	/*$('ul.sf-menu').superfish({
		delay:       1000,
		animation:   {opacity:'show',height:'show'},
		speed:       'fast',
		autoArrows:  false,
		dropShadows: false
	});*/
	
	

	
	/*-----------------------------------------------------------MENU ok-----------------------------------*/
	$("#menu_sezioni li").mouseover( function() { 
		$(this).toggleClass("attivo"); }
	);
	
	$("li").mouseout( function() { 
		$(this).toggleClass("attivo"); }
	);
	
	
		
	$("#menu_sezioni div").mouseover(function(){
	//$('#menu_sezioni li').mouseover(function(){
	//$('#menu_sezioni img').mouseover(function(){

		$('div[id^=sottoMenu]').hide();

		el_id=$(this).attr('id');
		//alert(el_id);
		$('#sotto'+el_id).show()
	})



	
	
	/*-------------------------------------------------------------------------------------------------*/
	
	/*$('img[alt$=products]').mouseout( function() 
		{ $(this).removeClass("attivo");
		});
	
	$('img[alt$=us]').mouseover( function() 
		{ $(this).attr({src:"img/about_on.jpg"} );
		});
	$('img[alt$=us]').mouseout( function() 
		{ $(this).attr({src:"img/about.jpg"} );
		});
	
	$('img[alt$=area]').mouseover( function() 
		{ $(this).attr({src:"img/download_on.jpg"} );
		});
	$('img[alt$=area]').mouseout( function() 
		{ $(this).attr({src:"img/download.jpg"} );
		});
	
	$('img[alt$=contact]').mouseover( function() 
		{ $(this).attr({src:"img/contact_on.jpg"} );
		});
	$('img[alt$=contact]').mouseout( function() 
		{ $(this).attr({src:"img/contact.jpg"} );
		});
	
	$('img[alt$=faq]').mouseover( function() 
		{ $(this).attr({src:"img/faq_on.jpg"} );
		});
	$('img[alt$=faq]').mouseout( function() 
		{ $(this).attr({src:"img/faq.jpg"} );
		});
	
	$('#schedaTopDx img').mouseover( function() 
		{ $(this).addClass('bordo');
		});
	$('#schedaTopDx img').mouseout( function() 
		{ $(this).removeClass('bordo');
		});*/
	
	
});




