startList = function(){
	$$("#menu>li").each(function(li){
		Event.observe(li,"mouseover",function(){Element.addClassName(li,"over");});
		Event.observe(li,"mouseout",function(){Element.removeClassName(li,"over");});
	});
}

document.observe("dom:loaded",startList);



function showEmail(user, domain, tld, title){

	var emailId = user + "\u0040" + domain + "." + tld;
	var url = "mailto:" + emailId;

	if(!title){
		title = emailId;
	}

	document.write("<a href='" + url + "'>" + title + "</a>");
}
