// JavaScript Document

// Normal jQuery items
$(document).ready(function() {
	//turn off "print" and "email" buttons on artilces
	$("a[@target='print_this']").css({display: "none"});
	$("a[@target='email_this']").css({display: "none"});
	
	// Append to the Pretty Name field
	
	$("#prettyName")
		.append('<p style="font-size:12px;"><a href="mailto:TKersteen@wpsir.com">TKersteen@wpsir.com</a></p>');

});

navHover = function() {
	var navEls = document.getElementById("nav").getElementsByTagName("LI");
	for (var i=0; i<navEls.length; i++) {
		navEls[i].onmouseover=function() {
			this.className+="navhover";
		}
		navEls[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp("navhover\\b"), "");
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", navHover);
