window.onload = function () {
	extendLoad();
}

function extendLoad() {
	//extended load.
}


function handleNavMouseOver(pId) {
	document.getElementById(pId + "Normal").style.display = "none";
	document.getElementById(pId + "Over").style.display = "block";
}

function handleNavMouseOut(pId) {
	document.getElementById(pId + "Over").style.display = "none";
	document.getElementById(pId + "Normal").style.display = "block";
}