﻿    function init(){
	//Main Menu items:
        menus[0] = new menu(22, "horizontal", screen.width > 1100 ? 270 : 140, 103, -2, -2, "#050505", "#050505", "Verdana,Helvetica", 9, 
		"bold", "bold", "white", "#CCCCCC", 1, "#598432", 2, "rollover:images/tri_down2.gif:images/tri_down2.gif", false, true, true, true, 12, true, 4, 4, "#050505");
        menus[0].addItem("index.html", "", 110, "center", "Home", 0);
        menus[0].addItem("about.html", "", 110, "center", "About Us", 0);
        menus[0].addItem("#", "", 140, "center", "Products", 1);
        menus[0].addItem("position.html", "", 110, "center", "Position", 0);
        menus[0].addItem("contact.html", "", 110, "center", "Contact Us", 0);

        //Sub Menu for 2nd Main Menu Item ("web building"):
        menus[1] = new menu(210, "vertical", 0, 0, -5, -5, "#050505", "#050505", "Verdana,Helvetica", 9, "bold", 
		"bold", "white", "#CCCCCC", 1, "#598432", 2, 62, false, true, false, true, 6, true, 4, 4, "#050505");
        menus[1].addItem("#", "", 22, "left", "LED WORK LIGHT", 2);
        menus[1].addItem("cablereel.html", "", 22, "left", "CABLE REEL", 0);
        menus[1].addItem("hosereel.html", "", 22, "left", "HOSE REEL", 0);
        menus[1].addItem("camping.html", "", 22, "left", "LED CAMPING LANTERN", 0);
        menus[1].addItem("ceiling.html", "", 22, "left", "LED CEILING LAMP", 0);
        menus[1].addItem("lighting.html", "", 22, "left", "LED LIGHTING", 0);

        menus[2] = new menu(110, "vertical", 0, 0, -5, -5, "#050505", "#050505", "Verdana,Helvetica", 9, "bold", 
		"bold", "white", "#CCCCCC", 1, "#598432", 2, 62, false, true, false, true, 6, true, 4, 4, "#050505");
        menus[2].addItem("ac.html", "", 22, "left", "AC series", 0);
        menus[2].addItem("adc.html", "", 22, "left", "ADC series", 0);
        menus[2].addItem("dc.html", "", 22, "left", "DC series", 0);




    } //OUTER CLOSING BRACKET. EVERYTHING ADDED MUST BE ABOVE THIS LINE.