window.onload = function(){

	// mailto links
	var links = document.getElementsByTagName("a");
	for (var i=0, l; l=links[i]; i++) {
		(function(){
			var m = l.innerHTML.match(/^([a-zA-Z0-9._-]+)\[at\]([a-zA-Z0-9._-]+)$/);
			if (m) {
				l.onmouseover	=
				l.onfocus		= function(){
					if (!this.href || !this.href.match(/^mailto:/)) {
						this.href = "mailto:" + m[1] + "@" + m[2];
					}
				};
			}
			else {
				m = l.href.match(/^http:\/\/([^\/]+)/);
				if (m && !m[1].match(/^(www\.)?asariton\.com$/) && !l.onclick) {
					l.onclick = function(){
						window.open(this.href);
						return false;
					};
				}
			}
		})()
	}

};
