function init()
{
	//Main Menu items:
	menus[0] = new menu(21, "horizontal", 30, 217, -2, -2, "#05236B", "#EDF2FE", "Verdana,Helvetica", 8, 
		"bold", "bold", "#EDF2FE", "05236B", 1, "gray", 2, "rollover:images/tri-down2.gif:images/tri-down1.gif",false, true, true, false, 0, true,0, 0, "#05236B");
	menus[0].addItem("home.htm", "", 90, "center", "Home",0);
	menus[0].addItem("#", "", 162, "center", "Services", 1);
        menus[0].addItem("#", "", 162, "center", "Packages", 2);
        menus[0].addItem("airport.htm", "", 150, "center", "Airport", 0);
        menus[0].addItem("contactus.htm", "", 150, "center", "Contact Us", 0);
        menus[0].floatMenu(800, 600, 10, 0);

//Sub Menu for 1st Main Menu Item ("Services"):
	menus[1] = new menu(190, "vertical", 0, 0, -5, -5, "#FFFFFF", "#05236B", "Verdana,Helvetica", 8, "bold", 
		"bold", "05236B", "white", 1, "gray", 2, 62, false, true, false, true, 6, true, 0,0, "black");
	menus[1].addItem("atlanticcity.htm", "", 20, "left", "Atlantic City", 0);
	menus[1].addItem("outoftown.htm", "", 20, "left", "Out Of Town", 0);
	menus[1].addItem("sedanservice.htm", "", 20, "left", "Sedan Service", 0);
        menus[1].addItem("concertsandsporting.htm", "", 20, "left", "Concerts & Sporting", 0);
	menus[1].addItem("graduation.htm", "", 20, "left", "Graduation & Formals", 0);
	menus[1].addItem("nightout.htm", "", 20, "left", "Nights Out", 0);
        menus[1].addItem("proms.htm", "", 20, "left", "Proms", 0);

//Sub Menu for 2nd Main Menu Item ("Packages"):
	menus[2] = new menu(165, "vertical", -3, 0, 0, 0, "#FFFFFF", "#05236B", "Verdana,Helvetica", 8, "bold", 
		"bold", "05236B", "white", 1, "gray", 2, "rollover:images/tri-right1.gif:images/tri-right2.gif", false, true, false, false, 0, true, 0, 0, "black");
	menus[2].addItem("wedding.htm", "", 20, "left", "Wedding", 0);
	menus[2].addItem("special.htm", "", 20, "left", "Special Occasions", 0);
  
   

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