function init()
{
	//Main Menu items:
	menus[0] = new menu(22, "horizontal", 10, 88, 35, -2, "#003399", "#003399", "Arial", 10, 
		"bold", "bold", "white", "#5CC56C", 0, "", 2, "", false, true, true, false, 0, false, 0, 0, "");
	menus[0].addItem("index.html", "", 107, "center", "Home", 0);
	menus[0].addItem("#", "", 105, "center", "Services", 1);
	menus[0].addItem("customers.html", "", 110, "center", "Customers", 0);
	menus[0].addItem("publications.php", "", 150, "center", "Publications", 0);
	menus[0].addItem("jobs.html", "", 45, "center", "Jobs", 0);
	menus[0].addItem("aboutus.html", "", 128, "center", "About Us", 0);
	menus[0].addItem("contactus.html", "", 105, "center", "Contact Us", 0);
		
//Sub Menu for 2nd Main Menu Item ("Services"):
	menus[1] = new menu(350, "vertical", 0, 0, -5, -5, "#EFEFEF", "#EFEFEF", "Arial", 8, 
		"", "", "#003399", "389A47", 1, "#003399", 5, "", false, true, false, false, 0, false, 0, 0, "");
	menus[1].addItem("training.html", "", 20, "left", "Training", 0);
	menus[1].addItem("transformation.html", "", 20, "left", "Business Transformation Delivery", 0);
	menus[1].addItem("projectmanagement.html", "", 20, "left", "Project Management for Enterprise Solutions", 0);
	menus[1].addItem("recovery.html", "", 20, "left", "Project Recovery", 0);
	menus[1].addItem("process.html", "", 20, "left", "Software Process Improvement", 0);
	menus[1].addItem("implementation.html", "", 20, "left", "Enterprise Project Management Processes and Tool Implementation", 0);
	menus[1].addItem("requirements.html", "", 20, "left", "Requirements Engineering Processes and Tool Implementation", 0);
	menus[1].addItem("litigationwitness.html", "", 20, "left", "Litigation Support/Expert Witness", 0);
	menus[1].addItem("recruiting.html", "", 20, "left", "IT Recruiting", 0);


} //OUTER CLOSING BRACKET. EVERYTHING ADDED MUST BE ABOVE THIS LINE.