/*window.onload = function() {
	var emailadd = {account: 'junicorn', host: ['dream','com']};
	document.getElementById("change_mailto").href = 'mailto:' + emailadd.account + String.fromCharCode(64) + emailadd.host.join('.');
}*/

document.getElementById('mailto').onmouseover = function() {
	var emailadd = {account: 'junicorn', host: ['dream','com']};
	document.getElementById("mailto").href = 'mailto:' + emailadd.account + String.fromCharCode(64) + emailadd.host.join('.');
}
