function init()
{
	//Main Menu items:
	menus[0] = new menu(22, "horizontal", 10, 110, 3, 3, "#EEE", "#8B0000", "Verdana,Helvetica", 9, 
		"", "bold", "black", "white", 1, "gray", 2, "rollover:images/tri-down1.gif:images/tri-down2.gif", false, true, true, true, 12, true, 2, 2, "gray");
	menus[0].addItem("http://www.pyramidsemiconductor.com/index.html", "", 100, "center", "Home", 0);
	menus[0].addItem("#", "", 100, "center", "Products", 1);
	menus[0].addItem("http://www.pyramidsemiconductor.com/services.html", "", 100, "center", "Services", 0);
	menus[0].addItem("http://www.pyramidsemiconductor.com/quality.html", "", 110, "center", "Quality", 0);
	menus[0].addItem("http://www.pyramidsemiconductor.com/sales.php", "", 110, "center", "Sales", 0);
	menus[0].addItem("http://www.pyramidsemiconductor.com/contact.html", "", 110, "center", "Contact", 0);
	menus[0].addItem("http://www.pyramidsemiconductor.com/aboutus.html", "", 110, "center", "About Us", 0);
	menus[0].addItem("http://www.pyramidsemiconductor.com/rohs.html", "", 110, "center", "RoHS", 0);

//Sub Menu for "Products":
	menus[1] = new menu(135, "vertical", 0, 0, 3, 3, "#EEE", "#8B0000", "Verdana,Helvetica", 9, "", 
		"bold", "black", "white", 1, "gray", 2, "rollover:images/tri-right1.gif:images/tri-right2.gif", false, true, false, true, 6, true, 2, 2, "gray");
	menus[1].addItem("#", "", 22, "left", "SRAM", 2);
	menus[1].addItem("http://www.pyramidsemiconductor.com/products/microprocessor/1750.html", "", 22, "left", "Microprocessor", 0);
	menus[1].addItem("http://www.pyramidsemiconductor.com/products/eprom/eprom.html", "", 22, "left", "EPROM", 0);
	menus[1].addItem("http://www.pyramidsemiconductor.com/products/eeprom/eeprom.html", "", 22, "left", "EEPROM", 0);
	
	
//Sub Menu for "Products/SRAM":
	menus[2] = new menu(170, "vertical", 0, 0, 3, 3, "#EEE", "#8B0000", "Verdana,Helvetica", 9, "", 
		"bold", "black", "white", 1, "gray", 2, "rollover:images/tri-right1.gif:images/tri-right2.gif", false, true, false, false, 0, true, 2, 2, "gray");
	menus[2].addItem("http://www.pyramidsemiconductor.com/products/sram/comm-ind.html", "", 22, "left", "Commercial/Industrial", 0);
	menus[2].addItem("http://www.pyramidsemiconductor.com/products/sram/milstd883.html", "", 22, "left", "Military/883", 0);
	

} //OUTER CLOSING BRACKET. EVERYTHING ADDED MUST BE ABOVE THIS LINE.