$(function(){
	springManager(978,560);

	$("ul.sn>li").hover(function(){
		$(this).addClass("attivo");
	},function(){
		$(this).removeClass("attivo");
	});

	$("a.esterno").attr({target:"_new"});
	$(".email").each(function(){
		var ma = ["damianoandreotti.com","contact"].reverse().join("@");
		var r;

		if ($(this).text() == "root@localhost")
			$(this).text(ma);
		if ((this.tagName == "A")&&(r = /^mailto:root@localhost(\?.+)?$/.exec(this.href))) {
			if (r[1] !== undefined)
				ma += r[1];
			this.href = "mailto:"+ma;
		}
	});
});
