// JavaScript Document


<!--

function addLoadEvent(func) {
	var oldonload = window.onload;
	if (typeof window.onload != 'function') {
		window.onload = func;
	} else {
		window.onload = function() {
			oldonload();
			func();
		}
	}
}


// JavaScript for Vertical Popup Nav
// javascript for IE/win, since it does not support li:hover



addLoadEvent(function() {
if (document.all) { 
	var li = document.getElementById("dropdown").getElementsByTagName("li");
	for (var i=0; i<li.length; i++) {
		li[i].onmouseover=function() {
			if(this.className != "nosub" || this.className != "nosublocation") {
				this.className+="iewin";
			}
		}
		li[i].onmouseout=function() {
			if (this.className == "locationiewin") {
				this.className=this.className.replace(new RegExp("locationiewin\\b"), "location");
			}		
			else {
				this.className=this.className.replace(new RegExp("iewin\\b"), "");
			}
		}
	}
	}
	else {
		return;
		}
})
addLoadEvent(function() {

	var t = document.getElementsByTagName("table");
	for (var i=0; i<t.length; i++) {
		if (t[i].className == "striped") {
			var trs = t[i].getElementsByTagName("tr");
			for (var j=0; j<trs.length; j++) {
				if (j%2 == 0){} 
				else {trs[j].className+="odd";}
			}
		}		
	}
})


//-->
