// JavaScript Document
<!--
function mail(input){
	var indirizzo;
	var oggetto;
	if(input=="staff") {indirizzo="dandem87@gmail.com"; oggetto="per:STAFF_ARCOBALENO_MESTRE";}
	else {indirizzo = "mauro.flora@alice.it" ; oggetto="per:PRESIDENTE_ARCOBALENO_MESTRE";}
	location.href = 'mailto:' + indirizzo + '?Subject=' + oggetto;
}

function init(){
	$(document).find('li.Hover ul').css('display', 'none');
	$('li.Hover').hover(showSubMenu, hideSubMenu);
}

function showSubMenu(){        
    $(this).children().stop().fadeIn().animate({opacity:1}, "fast");
}

function hideSubMenu(){
    $(this).children().stop().fadeOut().animate({opacity:0}, 'fast');
}

$(document).ready(init);
//-->
