$(document).ready(function() {

//  $('li#home> a').toggleClass('opened');
// TopMenu - Show Hide
//   $('#network-wrap:visible').hide();
//   $('#azienda-wrap:visible').hide();


	$('li#home> a').click(function() {
		$('div#network-wrap:visible').slideUp('slow');
		$('div#azienda-wrap:visible').slideUp('slow');
		$('div#utility-wrap:visible').slideUp('slow');
		$('li#home> a')[0].blur();
		$(this).toggleClass('opened');
		$('li#azienda> a.opened').removeClass('opened');
		$('li#network> a.opened').removeClass('opened');  
		$('li#utility> a.opened').removeClass('opened');  
//	  	window.location=$(this).attr("href");
		return false;
  	});
	
	$('li#azienda> a').click(function() {
		$('div#azienda-wrap').slideToggle('slow').siblings('div#network-wrap:visible').slideUp('slow');
		$('div#utility-wrap:visible').slideUp('slow');
		$('li#azienda> a')[0].blur();
		$(this).toggleClass('opened');
		$('li#home> a.opened').removeClass('opened');
		$('li#network> a.opened').removeClass('opened');		 
		$('li#utility> a.opened').removeClass('opened');  
		return false;
  	});

   	$('li#network> a').click(function() {
		$('div#network-wrap').slideToggle('slow').siblings('div#azienda-wrap:visible').slideUp('slow');
		$('div#utility-wrap:visible').slideUp('slow');
		$('li#network> a')[0].blur();
		$(this).toggleClass('opened');
		$('li#home> a.opened').removeClass('opened');
		$('li#azienda> a.opened').removeClass('opened');
		$('li#utility> a.opened').removeClass('opened');  		  
		 return false;
  	});
   	$('li#utility> a').click(function() {
		$('li#utility-wrap> a')[0].blur();
/*
		$(this).toggleClass('opened');
		$('li#azienda> a.opened').removeClass('opened');
		$('li#network> a.opened').removeClass('opened');  
	*/
		 return false;
  	});
	
	$(".featured").animate({opacity: .8});
	$('#divRotator').cycle({timeout:5000, pause:1, pager:'#rotatorNumberedMenu'});

			
});				

 
