Menu = new Array();
subMenu = new Array();
subSubMenu = new Array();


//== Menu Items ============================================================================================
// Enter a new line below for each Menu and 1st & 2nd level sub Menu items. The format is:
// addMenu("background colour", "background colour on mouseover", "font colour", "font-colour on mouseover", "displaying text", "URL", "target")
// For main menu items use addMenu(), for level 1 sub menu items use addSubMenu() and for level 2 sub menu items use addSubSubMenu()

//HOME	
addMenu("", "#494949", "#FFFFFF", "#FFFFFF", "Home", "index-2.html", "_top") 
	
//PRODUCTS	
addMenu("", "#494949", "#FFFFFF", "#FFFFFF", "Company", "aboutus.html", "_top") 
	

//MARKETS
addMenu("", "#494949", "#FFFFFF", "#FFFFFF", "Services", "services.html", "_top") 
	addSubMenu("#F9F9F9", "#FFFFFF", "#333333", "#000000", "Telecommunication", "http://www.elitecore.com/telecompractices/", "_top")
	addSubMenu("#F9F9F9", "#FFFFFF", "#333333", "#000000", "Network And Data Security", "networksecurity.html", "_top")
	addSubMenu("#F9F9F9", "#FFFFFF", "#333333", "#000000", "Access Gateway", "accessgateway.html", "_top")

//PARTNERS
addMenu("", "#494949", "#FFFFFF", "#FFFFFF", "Feed Back", "feed.html", "_top") 


//CUSTOMERS
addMenu("", "#494949", "#FFFFFF", "#FFFFFF", "Login", "login.html", "_top")   

//NEWS & EVENTS
addMenu("", "#494949", "#FFFFFF", "#FFFFFF", "Contact Us", "contactus.html", "_top")     
	




