var whichNavUse = document.cookie.indexOf("123veteran.com") != -1 ? 'emp' : 'index' ;
// We want to use a different navigation if we are logged in...
document.write("<scr" + "ipt language='javascript1.2' src='/arrays/top_" + whichNavUse + ".js' type='text/javascript'><\/scr" + "ipt>") ;
document.write("<SCR" + "IPT LANGUAGE='JavaScript1.2' SRC='/arrays/emp_" + gSubArray + ".js' TYPE='text/javascript'><\/SCR" + "IPT>") ;
document.write("<SCR" + "IPT LANGUAGE='JavaScript1.2' SRC='/includes/NavScript.js' TYPE='text/javascript'><\/SCR" + "IPT>") ;

// If gSubArray == a page with a sub menu, then we want to expand the appropriate sub nav menu...
function expandingSub() {
	if (gSubArray == 'behavior_e' || gSubArray == 'compatibility_e' || gSubArray == 'skills') {
		var expandingSubID ; // This will eventually be the ID of the submenu that we are going to expand
		switch (gSubArray) {
			case "compatibility_e" :
				expandingSubID = "leftSubDIV_1" ;
				break ;
			case "skills" :
				expandingSubID = "leftSubDIV_2" ;
				break ;
			case "behavior_e" :
				expandingSubID = "leftSubDIV_3" ;
		}
		var exSubDOM = dom(expandingSubID, 1) ;
		exSubDOM.display = "block" ;
	}
}
SafeAddOnload(expandingSub) ;
