﻿// Begin IE CSS fix

<!--[CDATA]//><!-- Header

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

//--><!]]>

<!--[CDATA]//><!-- Main

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

//--><!]]>

// End IE CSS Fix



// PPP Text Swap

function showHide(elementid){
if (document.getElementById(elementid).style.display == 'none'){
document.getElementById(elementid).style.display = '';
} else {
document.getElementById(elementid).style.display = 'none';
}
}

// End PPP Text Swap
