function changeAddress(id){
	mail = document.getElementById(id).href;
	if(!mail.match('mailto')){
		things = mail.split("@");
		document.getElementById(id).href= "mailto:" + things[2] + "@" + things[1];
	}
}	
