function init()
{
	//Main Menu items:
	menus[0] = new menu(25, "horizontal", -35, 133, 0, 0, "#1475DC", "#20C8EC", "Arial", 10, 
		"bold", "bold", "#FFFFFF", "black", 0, "white", 2, "", false, true, true, true, 13, false, 4, 4, "black");
	menus[0].addItem("index.html", "", 90, "center", "Home", 0);
	menus[0].addItem("#", "", 120, "center", "Our Store", 1);
	menus[0].addItem("commercial.html", "", 160, "center", "Commercial Accounts", 0);
	menus[0].addItem("student-program.html", "", 230, "center", "Student Advantage Program", 0);
    menus[0].addItem("laundry-tips.html", "", 150, "center", "Laundry Tips", 0);
    menus[0].addItem("contactus.html", "", 100, "center", "Contact Us", 0); 
    menus[0].floatMenu(800, 600, 10, 0);

//Sub Menu for 2nd Main Menu Item ("Our Store"):
	menus[1] = new menu(180, "vertical", 0, 0, -5, -5, "#20C8EC", "#1475DC", "arial", 9, "", "", "#000000", "white", 1, "gray", 2, 62, false, true, false, true, 6, true, 4, 4, "black");
		menus[1].addItem("laundry.html", "", 22, "left", "Laundry Services", 0);
        menus[1].addItem("directions.html", "", 22, "left", "Directions / Map / Hours", 0);        
        menus[1].addItem("store.html", "", 22, "left", "Amenities", 0);
        menus[1].addItem("gallery.html", "", 22, "left", "Photo Gallery", 0);


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