nMaxItem = 4; NameIndex = 0; DefaultState = 1; MouseOverState = 2; MouseDownState = 3; imgCounter = 0; ImageList = new Array(); bIsSupportOK = ( ((navigator.appName == "Netscape") && (parseInt(navigator.appVersion) >= 3 )) || ((navigator.appName == "Microsoft Internet Explorer") && (parseInt(navigator.appVersion) >= 4 )) ); function AddImageToImageList(name, Default, MouseOver, MouseDown) { ImageList[imgCounter] = new Array(nMaxItem); ImageList[imgCounter][NameIndex] = name; ImageList[imgCounter][DefaultState] = new Image(); ImageList[imgCounter][DefaultState].src = Default; if (MouseOver != "") { ImageList[imgCounter][MouseOverState] = new Image(); ImageList[imgCounter][MouseOverState].src = MouseOver; } if (MouseDown != "") { ImageList[imgCounter][MouseDownState] = new Image(); ImageList[imgCounter][MouseDownState].src = MouseDown; } imgCounter++; } function ReplaceImage(name, state) { for (i = 0; i < imgCounter; i++) { if (document.images[ImageList[i][NameIndex]] != null) { if ((name == ImageList[i][NameIndex]) && (ImageList[i][state] != null)) document.images[name].src = ImageList[i][state].src; } } } function ReplaceMapImage(imgname, mapname, state) { for (i = 0; i < imgCounter; i++) { if (document.images[imgname] != null) { if ((mapname == ImageList[i][NameIndex]) && (ImageList[i][state] != null)) document.images[imgname].src = ImageList[i][state].src; } } } function ReplaceNav(name, src) { if(document.images[name] != null) document.images[name].src = src; } AddImageToImageList("SideBarSysEng", "images/sidebar_normal.gif", "images/sidebar_syseng.gif", "images/sidebar_syseng.gif"); AddImageToImageList("SideBarKnowMgmt", "images/sidebar_normal.gif", "images/sidebar_knowmgmt.gif", "images/sidebar_knowmgmt.gif"); AddImageToImageList("SideBarSoftDev", "images/sidebar_normal.gif", "images/sidebar_softdev.gif", "images/sidebar_softdev.gif"); AddImageToImageList("SideBarConMod", "images/sidebar_normal.gif", "images/sidebar_conmod.gif", "images/sidebar_conmod.gif"); AddImageToImageList("SideBarInfoGate", "images/sidebar_normal.gif", "images/sidebar_infogate.gif", "images/sidebar_infogate.gif"); AddImageToImageList("SideBarProd", "images/sidebar_normal.gif", "images/sidebar_prod.gif", "images/sidebar_prod.gif"); AddImageToImageList("TopBarHome", "images/topbar_normal.gif", "images/topbar_home.gif", "images/topbar_home.gif"); AddImageToImageList("TopBarWho", "images/topbar_normal.gif", "images/topbar_who.gif", "images/topbar_who.gif"); AddImageToImageList("TopBarWhy", "images/topbar_normal.gif", "images/topbar_why.gif", "images/topbar_why.gif"); AddImageToImageList("TopBarPhilosophy", "images/topbar_normal.gif", "images/topbar_philosophy.gif", "images/topbar_philosophy.gif"); AddImageToImageList("TopBarContact", "images/topbar_normal.gif", "images/topbar_contact.gif", "images/topbar_contact.gif"); AddImageToImageList("DownNowButton", "images/down_now_button_normal.gif", "images/down_now_button_over.gif", "images/down_now_button_over.gif");