﻿	/*
width,
left_position,top_position,
font_color,mouseover_font_color,
background_color,mouseover_background_color,
border_color,separator_color,
*/

arMenu1 = new Array(
130,
"220",38,
"","",
"","",
"","",
"&#160;About DuMonde","About.asp",0,
"&#160;Values","Values.asp",0,
"&#160;Culture","Culture.asp",0,
"&#160;Success Stories","CaseStudies.asp",0,
"&#160;Clients","Clients.asp",0,
"&#160;Partners/Alliances","Partners.asp",0
)

arMenu2 = new Array(
125,
"427",38,
"","",
"","",
"","",
"&#160;ERP","ERP.asp",0,
"&#160;Database Services","Database.asp",0,
"&#160;Consulting Services","Consulting.asp",0,
"&#160;Training","Training.asp",0,
"&#160;Web Services","WebServices.asp",0,
"&#160;Project Management","ProjMgmt.asp",0,
"&#160;Extended Support","ExtendedServices.asp",0

)

// "&#160;Culture","Culture.asp",0,

arMenu3 = new Array(
100,
"495",38,
"","",
"","",
"","",
"&#160;Hot Jobs","Careers.asp",0,
"&#160;Benefits","Benefits.asp",0,
"&#160;Values","Values.asp",0,
"&#160;Culture","Culture.asp",0,
"&#160;How to Apply","BecomeAMember.asp",0
)
	
arMenu2_1 = new Array(
"name",".asp",0,
"name",".asp",0,
"name",".asp",0
)
arMenu2_2 = new Array(
"name",".asp",0,
"name",".asp",0,
"name",".asp",0
)

arMenu2_4 = new Array(
"name",".asp",0,
"name",".asp",0,
"name",".asp",0
)

arMenu4 = new Array(
150,
"",38,
"","",
"","",
"","",
"Network &amp; Facilities","/html/specs/facilities.cfm",0,
"Security","/html/specs/security.cfm",0,
"Staff","/html/specs/staff.cfm",0,
"Support Services","/html/specs/supportservices.cfm",0
)

arMenu5 = new Array(
150,
"",38,
"","",
"","",
"","",
"Overview","/html/info/overview/index.cfm",0,
"News","/html/info/news/index.cfm",0,
"Management Team","/html/info/management/index.cfm",0,
"Career Opportunities","/html/info/career/index.cfm",0,
"Contact Information","/html/info/contact/index.cfm",0
)

arMenu6 = new Array(
150,
"",38,
"","",
"","",
"","",
"Overview","/html/info/overview/index.cfm",0,
"News","/html/info/news/index.cfm",0,
"Management Team","/html/info/management/index.cfm",0,
"Career Opportunities","/html/info/career/index.cfm",0,
"Contact Information","/html/info/contact/index.cfm",0
)

arMenu7 = new Array(
150,
"250",38,
"","",
"","",
"","",
"Overview","/html/info/overview/index.cfm",0,
"News","/html/info/news/index.cfm",0,
"Management Team","/html/info/management/index.cfm",0,
"Career Opportunities","/html/info/career/index.cfm",0,
"Contact Information","/html/info/contact/index.cfm",0
)

/*hierMenus.js - Cross-Browser/Full-Window/Frames
* by Peter Belesis. v3.08 990824
* Copyright (c) 1999 internet.com Corp. All Rights Reserved.
* Originally published and documented at http://www.dhtmlab.com/
* You may use this code on a public Web site only if this entire
* copyright notice appears unchanged and you publicly display
* on the Web page a link to http://www.dhtmlab.com/.
*
* Contact pbel@internet.com for all other uses.
*/

/***********
includes fixes for:
- zindex for IE4
- menu widths
- child positioning
- image and text positioning/wrapping
***********/

loader = (isFrames) ? (NS4) ? parent : parent.document.body : window;
loader.onload = startIt;
if(NS4){
	origWidth = loader.innerWidth;
	origHeight = loader.innerHeight;
	loader.onresize = reDo;
}
isLoaded = false;
NSresized = false;

if (!window.menuVersion) {
	clickKill = showVisited = NSfontOver = keepHilite = clickStart = false;
}

// 3.08 added next line
if (!window.imgHspace) imgHspace=0;

isWin = (navigator.appVersion.indexOf("Win") != -1)
if (!isWin && !isMac) NSfontOver = showVisited = false;

mSecsVis = secondsVisible*300;
isRight = (window.navFrLoc && navFrLoc == "right");

//3.08 modified next line with added space
imgSuf = (isRight) ? ">"  : " ALIGN=RIGHT>";

//3.08 modified next line for use of imgHspace variable
imgStr = "<IMG SRC='" + imgSrc + "' WIDTH=5 HEIGHT=9 VSPACE=2 HSPACE="+ imgHspace +" BORDER=0"+ imgSuf;

// 3.08 added next line
fullImgSize = (imgSiz+(imgHspace*2));

//3.08 added next line: wrap item text by using span with image
if(IE4) imgStr = "<SPAN STYLE='height:100%;width:"+ (fullImgSize-(isRight?3:0)) +";float:"+ (isRight?"left":"right") +";overflow:hidden'>"+ imgStr +"</SPAN>";

//3.08 omitted next line:
//spStr = (isRight && NS4) ? "<SPACER TYPE=HORIZONTAL SIZE="+imgSiz+">" : "";

areCreated = false;
menuLoc = null;

function initVars() {
	if(areCreated) {
		for(i=1; i<topCount; i++) {
			cur = eval("elMenu"+i);
			clearTimeout(cur.hideTimer);
			cur.hideTimer=null;
		}
		clearTimeout(allTimer);
	}
	topCount = 1;
	areCreated = false;
	beingCreated = false;
	isOverMenu = false;
	currentMenu = null;
	allTimer = null;
}

initVars();
window.onerror = handleErr;

function handleErr(){
	arAccessErrors = ["permission","access"];
	mess = arguments[0].toLowerCase();
	found = false;
	for (i=0;i<arAccessErrors.length;i++) {
		errStr = arAccessErrors[i];
		if (mess.indexOf(errStr)!=-1) found = true;
	}
	return found;
}
//end
