function unhideEmail(a,sx,dm,nm,ihtml){
	document.getElementById(a).href='mai' + 'lto:' + nm + String.fromCharCode(64) + dm  + String.fromCharCode(46) + sx;
	if (ihtml){
		document.getElementById(a).innerHTML=nm + String.fromCharCode(64) + dm  + String.fromCharCode(46) + sx;
	}
}
function hideEmail(a,ihtml){
	document.getElementById(a).href='javascript:;';
	if (ihtml)
		document.getElementById(a).innerHTML=ihtml;
}

$(function() {
	$(".toplink a").click(function(){
		$('html, body').animate({scrollTop:0}, 'slow'); 
		return false;
	}); 
});
