window.onload = function(){
	var a = document.getElementsByTagName('a');
	for(var i = 0; i < a.length; i++ ){
		if(a[i].className.match(/^mailaddress$/)){
			a[i].onmouseover = function(){ this.style.cursor = 'pointer'; }
			a[i].onmouseout = function(){ this.style.cursor = 'normal'; }
			a[i].onclick = function(){
				location.href = 'mailto:' + this.name + '@ayur-sattva.com';
			}
		}
	}
}