function init()
{
	var xoffset=180-20;
	if(navigator.appName=="Microsoft Internet Explorer")
		xoffset = 0;
	menus[0] = new menu(
		180,						// width of vertical menu 
		"vertical", 				// orientation
		5, 10, 						// Horizontal and Vertical position of menu
		-(xoffset), 10, 						// Horiz and Vert offset of new menus (+ is down or right)
		"#ffffee"/*"#CACAFF"*/, 	// Normal background color
		"gold"/*"#0000A0"*/, 		// Mouse-over background color
		"Verdana,Helvetica", 9, 	// Font and Point size
		"bold", 					// Normal Style (bold, italic and/or underline)
		"bold", 					// Mouse-over Style (bold, italic and/or underline)
		"green", 					// Normal text color
		"black", 					// Mouse-over text color
		4, "green" /*"#ffffee""gray"*/, 	// Size and color of border around menu/items
		0, 							// Margins for item content
		"rollover:tri.gif:tri.gif", // Sub-menu character
		false, 						// Display sub-menus only on mouse-click
		true, 						// Separate menu items with a divider (same size and color as border)
		true, 						// This is the Main Menu (not a sub menu)
		true, 12, 					// Use Transition Effects & Effect number (1-23)
		false, 4, 4, "black");		// Shadow, Horiz width, Vert width, color


	menus[0].addItem("home.html", "content", 22, "left", "Home Page", 0);
	menus[0].addItem("about.html", "content", 22, "left", "About Our Company", 0);
	menus[0].addItem("software.html", "content", 22, "left", "Software Design", 0);
	menus[0].addItem("hardware.html", "content", 22, "left", "Hardware Design", 0);
	menus[0].addItem("#", "", 22, "left", "Project Types", 1);
	menus[0].addItem("special_projects.html", "content", 22, "left", "Special Projects", 0);
	menus[0].addItem("portfolio.html", "content", 22, "left", "Client Portfolio", 0);
	menus[0].addItem("request_information.html", "content", 22, "left", "Request Info", 0);
	menus[0].addItem("motto.html", "content", 22, "left", "Our Motto", 0);
	menus[0].addItem("texas.html", "content", 22, "left", "Texas!", 0);
	menus[0].addItem("repository.html", "content", 22, "left", "Repository", 0);
	menus[0].addItem("pubcryptokey.html", "content", 22, "left", "Pub Crypto Key", 0);

//Sub Menu for 2nd Main Menu Item ("Project Types"):
	menus[1] = new menu(
		170, 
		"vertical", 
		0, 0, 
		-5, -5, 
		"#ffffee"/*"#CACAFF"*/, 
		"gold"/*"#0000A0"*/, 
		"Verdana,Helvetica", 8, 
		"bold", 
		"bold", 
		"green", 
		"black", 
		4, "green" /*"#ffffee""gray"*/, 
		0, 
		62, 
		false, 
		true, 
		false, 
		true, 6, 
		false, 4, 4, "black");


	menus[1].addItem("project_types_home.html", "content", 22, "left", "Overview", 0);
	menus[1].addItem("project_types_cable.html", "content", 22, "left", "Cable & Satellite", 0);
	menus[1].addItem("project_types_embedded.html", "content", 22, "left", "Embedded Systems", 0);
	menus[1].addItem("project_types_medical.html", "content", 22, "left", "Medical Devices", 0);
	menus[1].addItem("project_types_other.html", "content", 22, "left", "Other", 0);


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