function init()
{
	//Main Menu items:
	menus[0] = new menu(30, "horizontal", -52, 139, 4, 0, "#A6AF7A", "#A6AF7A", "Arial", 9, 
		"bold", "bold", "#FFFFFF", "#000000", 0, "white", 2, "", false, true, true, true, 13, false, 4, 4, "black");
	menus[0].addItem("index.html", "", 105, "center", "Home", 0);
	menus[0].addItem("#", "", 120, "center", "About Us", 1);
	menus[0].addItem("#", "", 120, "center", "Services", 2);
	menus[0].addItem("#", "", 145, "center", "Photo Gallery", 3);
        menus[0].addItem("#", "", 130, "center", "Resources", 4);
        menus[0].addItem("#", "", 120, "center", "Downloads", 5);
        menus[0].addItem("#", "", 140, "center", "Contact Us", 6); 
        menus[0].floatMenu(800, 600, 10, 0);

//Sub Menu for 2nd Main Menu Item ("About Us"):
	menus[1] = new menu(130, "vertical", 0, 0, -5, -5, "#CCCEA9", "#A6AF7A", "Verdana,Helvetica", 8, "", "", "#000000", "white", 1, "gray", 2, 62, false, true, false, true, 6, true, 4, 4, "black");
		menus[1].addItem("aboutus.html", "", 22, "left", "Company Profile", 0);
        menus[1].addItem("location.html", "", 22, "left", "Location", 0);        
        menus[1].addItem("careers.html", "", 22, "left", "Careers", 0);
        menus[1].addItem("awards.html", "", 22, "left", "Awards", 0);
        menus[1].addItem("news.html", "", 22, "left", "News Articles", 0);
		menus[1].addItem("testimonials.html", "", 22, "left", "Testimonials", 0);
	    menus[1].addItem("coupons.html", "", 22, "left", "Coupons", 0);   

//Sub Menu for 3rd Main Menu Item ("Services"):
	menus[2] = new menu(180, "vertical", 0, 0, -5, -5, "#CCCEA9", "#A6AF7A", "Verdana,Helvetica", 8, "", "", "#000000", "white", 1, "gray", 2, 62, false, true, false, true, 6, true, 4, 4, "black");
	menus[2].addItem("overview.html", "", 22, "left", "Exterior Designs", 0);
	menus[2].addItem("windows.html", "", 22, "left", "Windows & Patio Doors", 0);
       menus[2].addItem("sidings.html", "", 22, "left", "Sidings", 0);
        menus[2].addItem("doors.html", "", 22, "left", "Doors", 0);
	menus[2].addItem("porticos.html", "", 22, "left", "Porticos", 0);
	menus[2].addItem("pergolas.html", "", 22, "left", "Pergolas", 0);
        menus[2].addItem("cupolas.html", "", 22, "left", "Cupolas", 0);
        menus[2].addItem("dormers.html", "", 22, "left", "Dormers", 0);
        menus[2].addItem("soffit.html", "", 22, "left", "Soffit-Fascia, Gutters", 0);
      
//Sub Menu for 3th Main Menu Item ("Photo Gallery"):
	 menus[3] = new menu(110, "vertical", 0, 0, -5, -5, "#CCCEA9", "#A6AF7A", "Verdana,Helvetica", 8, "", "", "#000000", "white", 1, "gray", 2, 62, false, true, false, true, 6, true, 4, 4, "black");
	menus[3].addItem("photos.html", "", 22, "left", "Photos", 0);
	menus[3].addItem("videos.html", "", 22, "left", "Video", 0);

//Sub Menu for 4th Main Menu Item ("Resources"):
	 menus[4] = new menu(180, "vertical", 0, 0, -5, -5, "#CCCEA9", "#A6AF7A", "Verdana,Helvetica", 8, "", "", "#000000", "white", 1, "gray", 2, 62, false, true, false, true, 6, true, 4, 4, "black");
	menus[4].addItem("faq.html", "", 22, "left", "F.A.Q.s", 0);
	menus[4].addItem("windowbasics.html", "", 22, "left", "Window Basics", 0);
	menus[4].addItem("doorbasics.html", "", 22, "left", "Door Basics", 0);
	menus[4].addItem("glossary.html", "", 22, "left", "Glossary of Terms", 0);
        menus[4].addItem("casing.html", "", 22, "left", "Casing Types", 0);
        menus[4].addItem("manufacturer.html", "", 22, "left", "Manufacturer Links", 0);
        menus[4].addItem("partners.html", "", 22, "left", "Trusted Partner Page", 0);

//Sub Menu for 5th Main Menu Item ("Downloads"):
	menus[5] = new menu(110, "vertical", 0, 0, -5, -5, "#CCCEA9", "#A6AF7A", "Verdana,Helvetica", 8, "", "", "#000000", "white", 1, "gray", 2, 62, false, true, false, true, 6, true, 4, 4, "black");
	menus[5].addItem("brochure.html", "", 22, "left", "Brochure", 0);
	menus[5].addItem("coupons.html", "", 22, "left", "Coupons", 0);

//Sub Menu for 6th Main Menu Item ("Contact Us"):
	menus[6] = new menu(150, "vertical", 0, 0, -5, -5, "#CCCEA9", "#A6AF7A", "Verdana,Helvetica", 8, "", "", "#000000", "white", 1, "gray", 2, 62, false, true, false, true, 6, true, 4, 4, "black");
	menus[6].addItem("contactus.html", "", 22, "left", "Contact Form", 0);
	menus[6].addItem("estimate.html", "", 22, "left", "Free Design Plan", 0);
	menus[6].addItem("brochure.html", "", 22, "left", "Request a Brochure", 0);
	menus[6].addItem("coupons.html", "", 22, "left", "Coupons", 0);
	menus[6].addItem("privacy.html", "", 22, "left", "Privacy Policy", 0);
	menus[6].addItem("disclaimer.html", "", 22, "left", "Legal Disclaimer", 0);



} //OUTER CLOSING BRACKET. EVERYTHING ADDED MUST BE ABOVE THIS LINE.