function init()
{
	
	//Main Menu items:
	menus[0] = new menu(85, "vertical", 10, 163, 7, 5, "#F2B71C", "#D72928", "Arial,Verdana,Helvetica", 12, 
		"bold", "bold", "white", "white", 1, "#D72928", 2, "rollover:images/tri-right4.gif:images/tri-right3.gif", 
		false, true, true, true, 23, true, 7, 7, "black");
	menus[0].addItem("index.html", "", 50, "center", "Home", 0);
	menus[0].addItem("aboutus.html", "", 50, "center", "About Us", 0);
	menus[0].addItem("#", "", 50, "center", "Products", 1);
	menus[0].addItem("contact.html", "", 50, "center", "Contact", 0);
	menus[0].floatMenu(1024, 768, 10, 1);
	

//Sub Menu for 2nd Main Menu Item ("Products"):
	menus[1] = new menu(60, "horizontal", 0, 0, -5, -5, "#F2B71C", "#D72928", "Arial,Verdana,Helvetica", 9, "bold", 
		"bold", "white", "white", 1, "#D72928", 2, "rollover:images/tri-right1.gif:images/tri-right2.gif", 
		false, true, false, true, 23, true, 7, 7, "black");
	menus[1].addItem("productsmain.html", "", 70, "center", "Bumpers & Styling Kits", 0);
	menus[1].addItem("productplastic.html", "", 60, "center", "Plastic Bumper Repairs", 0);
	menus[1].addItem("productsbodyrepair.html", "", 60, "center", "Body Repairs", 0);
	menus[1].addItem("productbody.html", "", 60, "center", "Body Styling Kits", 0);


} //OUTER CLOSING BRACKET. EVERYTHING ADDED MUST BE ABOVE THIS LINE.