var menu = new Array();
menu[1] = new Array();
menu[1][0] = new Menu(9,'104','126', '160', '#effaff', '#e1eaf4', 'smenu');
menu[1][1] = new Item('Profile','/company/profile/','smenu','','','');
menu[1][2] = new Item('Management Background','/company/management_background/','smenu','','','');
menu[1][3] = new Item('Contacts','/contacts/','smenu','','','');
menu[1][4] = new Item('News & Events','/news/','smenu','','','');
menu[1][5] = new Item('Careers at EISST','/company/careers/','smenu','','','');
menu[2] = new Array();
menu[2][0] = new Menu(135,'104','126', '160', '#effaff', '#e1eaf4', 'smenu');
menu[2][1] = new Item('H-Server software license
and services agreement','/contracts/hserver_lsa/','smenu','','','');
menu[2][2] = new Item('EISST Limited (EISST)
Software End User
License Agreement (EULA)','/contracts/eisst_eula/','smenu','','','');
menu[3] = new Array();
menu[3][0] = new Menu(261,'104','126', '160', '#effaff', '#e1eaf4', 'smenu');
menu[3][1] = new Item('Internet Security Consulting','/services/internet_security_consulting/','smenu','','','');
menu[3][2] = new Item('Deployment Services','/services/deployment_services/','smenu','','','');
menu[3][3] = new Item('System Integration Services','/services/system_integration_services/','smenu','','','');
menu[3][4] = new Item('Customized Solutions','/services/customized_solutions/','smenu','','','');
menu[3][5] = new Item('Training','/services/training/','smenu','','','');
menu[4] = new Array();
menu[4][0] = new Menu(387,'104','126', '160', '#effaff', '#e1eaf4', 'smenu');
menu[4][1] = new Item('Overview','/products/','smenu','','','');
menu[4][2] = new Item('e-Capsule™ Private Safe','/products/private_safe/','smenu','','','');
menu[4][3] = new Item('e-Capsule™ Private Mail','/products/private_mail/','smenu','','','');
menu[4][4] = new Item('e-Capsule™ Private Browser','/products/private_browser/','smenu','','','');
menu[4][5] = new Item('e-Capsule™ Private Suite','/products/private_suite/','smenu','','','');
menu[4][6] = new Item('e-Capsule™ File Server','/products/file_server/','menusep','','','');
menu[4][7] = new Item('Volume Purchases','/products/volume_purchases/','smenu','','','');
menu[5] = new Array();
menu[5][0] = new Menu(513,'104','126', '160', '#effaff', '#e1eaf4', 'smenu');
menu[5][1] = new Item('Distribution Partners','/partners/distribution/','smenu','','','');
menu[5][2] = new Item('Solution Partners','/partners/solution/','smenu','','','');
menu[5][3] = new Item('Technology Partners','/partners/technology/','smenu','','','');
menu[6] = new Array();
menu[6][0] = new Menu(639,'104','126', '160', '#effaff', '#e1eaf4', 'smenu');
menu[6][1] = new Item('Customer Support','/support/','smenu','','','');
menu[6][2] = new Item('Frequently Asked Questions','/faqs/','smenu','','','');
menu[6][3] = new Item('Glossary','/glossary/','smenu','','','');
menu[6][4] = new Item('Articles','/articles/','smenu','','','');
menu[6][5] = new Item('Downloads','/resources/downloads/','smenu','','','');
menu[7] = new Array();
menu[7][0] = new Menu(765,'104','126', '160', '#effaff', '#e1eaf4', 'smenu');
var barOverCol = "#f53420";
var barBackCol = "#e1eaf4";
var popTimer = 0;
var litNow = new Array();
function Menu(x, y, width, swidth, overCol, backCol, txtClass) {
this.x = x;
this.y = y;
this.width = width;
this.swidth = swidth;
this.overCol = overCol;
this.backCol = backCol;
this.textClass = txtClass;
this.parentMenu = null;
this.parentItem = null;
this.ref = null;
}
function Item(text, href, txtClass, target, length, spacing) {
this.text = text;
this.href = href;
this.length = length;
this.spacing = spacing;
this.target = target;
this.textClass = txtClass;
this.ref = null;
}
function mbarCol(menuNum, isOver){
parentref = getSty("mbar" + menuNum);
newCol = isOver ? barOverCol : barBackCol;
with (parentref) {
if (isNS4) bgColor = newCol;
else backgroundColor = newCol;
}
}
function changeCol(menuNum, itemNum, isOver) {
if(itemNum){
changeArray = menu[menuNum];
for (menuCount = 1; menuCount < changeArray.length; menuCount++) {
if (changeArray[menuCount]) {
newCol = isOver ? changeArray[0].overCol : changeArray[0].backCol;
thisref = getSty("menu" + menuNum + "item" + itemNum);
with (thisref) {
// alert('1');
if (isNS4) bgColor = newCol;
else backgroundColor = newCol;
}
}
}
}
}
function hideAllBut(menuNum) {
var menuRealNum=(menuNum==1)?menuNum:menuNum-1;
for (count = 1; count < menu.length; count++){
if (count != menuRealNum){
if(menu[count].length>1) menu[count][0].ref.visibility = 'hidden';
}
if (count != menuNum){
mbarCol(count, false);
}
}
}
function drawMenu(){
if (!isDOM && !isIE4 && !isNS4) return;
if (isNS4) return;
for (currMenu = 1; currMenu < menu.length; currMenu++) with (menu[currMenu][0]) {
var itemX = x, itemY = y;
var str = "";
if(menu[currMenu].length > 1){
if (isDOM || isIE4) {
str += '