document.onload = function() {
	document.getElementById('email').href='mailto:jamalex';
};

document.getElementById('email').onmoveover = function() {
	
	if (this.href.length() == 14)
		this.href += '@gmail.com';
	
};