// JavaScript Document
var submenus = new Array("infocredit","infobak","research","armprogram","property","business", "about", "missionvision", "theteam", "contact", "inquiry", "allnews", "corporate", "events", "pressrelease", "programs");
for (var i=0; i < submenus.length; i++) {
	if (document.getElementById(submenus[i])) {
		document.getElementById(submenus[i]).onmouseover = function() { if (this.className != "selected") this.className = "over"; };
		document.getElementById(submenus[i]).onmouseout = function() { if (this.className == "over") this.className = ""; };
		document.getElementById(submenus[i]).onclick = function() { 
			target = this.firstChild.getAttribute("href");
			window.location.href = target;
		};
	}
}