/*
sfHover = function() {
	var sfEls = document.getElementById("nav").getElementsByTagName("LI");
	for (var i=0; i<sfEls.length; i++) {
		sfEls[i].onmouseover=function() {
			this.className+=" sfhover";
		}
		sfEls[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", sfHover);
*/

// Contact
$(document).ready(function(){ 

	// rewrite contact anchor tags to mailtos
	$("a.contact").each(function(){
		var href = $(this).attr('href');
		var bits = href.split("/");
		$(this).attr('href', "mailto:"+bits[4]+'@'+bits[3]+'.'+bits[2]);
		$(this).attr("rel","nofollow");
		$(this).text(bits[4]+'@'+bits[3]+'.'+bits[2]);
	});
});
