function init()
{
	//Main Menu items:
	menus[0] = new menu(20, "horizontal", 130, 85, 0, 0, "#2789E5", "#2789E5", "Arial Narrow,Arial", 8, 
		"normal", "normal", "FFFFFF", "FFE97B", 1, "2789E5", 2, "", false, true, true, true, 9, true, 0, 0, "black");
	menus[0].addItem("mainpage.htm", "", 70, "left", "&nbsp;HOME", 0);
	menus[0].addItem("aboutisland.htm", "", 105, "left", "&nbsp;THE ISLAND", 1);
	menus[0].addItem("aboutresort.htm", "", 80, "left", "&nbsp;RESORT", 2);
	menus[0].addItem("diving.htm", "", 70, "left", "&nbsp;DIVE", 0);
	menus[0].addItem("testimonials.htm", "", 105, "left", "&nbsp;ARTICLES", 0);
	menus[0].addItem("contactus.htm", "", 105, "left", "&nbsp;CONTACT US", 0);

//Sub Menu for 2nd Main Menu Item ("Island"):
	menus[1] = new menu(135, "vertical", 0, 0, -5, -5, "#DEE7EE", "#D2E0EE", "Arial,Arial Narrow", 8, "Normal", 
		"Normal", "#2789E5", "#2789E5", 1, "FFFFFF", 2, 62, false, true, false, true, 6, true, 2, 2, "#7A9EBF");
	menus[1].addItem("aboutisland.htm", "", 20, "left", "Malapascua Island", 0);
	menus[1].addItem("gettingthere.htm", "", 20, "left", "Getting There", 0);
	menus[1].addItem("islandgallery.htm", "", 20, "left", "Island Gallery", 0);
	

//Sub Menu for 2nd Main Menu Item ("Resort"):
	menus[2] = new menu(200, "vertical", 0, 0, -5, -5, "#DEE7EE", "#D2E0EE", "Arial,Arial Narrow", 8, "Normal", 
		"Normal", "#2789E5", "#2789E5", 1, "FFFFFF", 2, 62, false, true, false, true, 6, true, 2, 2, "#7A9EBF");
	menus[2].addItem("aboutresort.htm", "", 20, "left", "Accommodation", 0);
	menus[2].addItem("activities.htm", "", 20, "left", "Activities", 0);
	
	menus[2].addItem("tariffs.htm", "", 20, "left", "Rates", 0);
	menus[2].addItem("resortgallery.htm", "", 20, "left", "Resort Gallery", 0);


//Sub Menu for 3rd Main Menu Item ("Dive"):
	menus[3] = new menu(135, "vertical", 0, 0, -5, -5, "#DEE7EE", "#D2E0EE", "Arial,Arial Narrow", 8, "Normal", 
		"Normal", "#2789E5", "#2789E5", 1, "FFFFFF", 2, 62, false, true, false, true, 6, true, 2, 2, "#7A9EBF");
	menus[3].addItem("mainpage.htm", "", 20, "left", "About Diving", 0);
	menus[3].addItem("mainpage.htm", "", 20, "left", "Gallery", 0);
	menus[3].addItem("mainpage.htm", "", 20, "left", "Www.divelinkcebu.com", 0);


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