function init()
{
	//Main Menu items:
	menus[0] = new menu(23, "horizontal", 0, 214, -1, -2, "#692e12", "#dae68a", "arial,Helvetica", 9, 
		"bold", "bold", "fffef0", "692e12", 1, "692e12", 2, "", false, true, true, true, 5, false, 0, 0, "black");
	
	menus[0].addItem("#", "", 100,"center", "about tina", 1);
	menus[0].addItem("#", "", 85,"center", "schedule", 2);
	menus[0].addItem("http://www.tinayoga.com/privateinstruction.htm", "", 140, "center", "private instruction", 0);
	menus[0].addItem("http://www.tinayoga.com/workshops.htm", "", 95,"center", "workshops", 0);
	menus[0].addItem("http://www.tinayoga.com/bookclub.htm", "", 84,"center", "bookclub", 0);
	menus[0].addItem("#", "", 90,"center", "inspiration", 3);
	menus[0].addItem("http://www.tinayoga.com/shop.htm", "", 60,"center", "shop", 0);
	menus[0].addItem("http://www.tinayoga.com/contact.htm", "", 75,"center", "contact", 0);
	menus[0].addItem("http://www.tinayoga.com/links.htm", "", 55,"center", "links", 0);
	
	//Sub Menu for 1st Main Menu Item ("about tina"):
	menus[1] = new menu(110, "vertical", 0, 0, -5, -5, "#fffef0", "#dae68a", "arial,Helvetica", 8, "normal", 
		"bold", "692e12", "814021", 1, "814021", 2, 62, false, true, false, true, 6, true, 4, 4, "black");
	menus[1].addItem("http://www.tinayoga.com/abouttina.htm", "", 22, "left", "tina's bio", 0);
	menus[1].addItem("http://www.tinayoga.com/abouttlc.htm", "", 22, "left", "about TLC", 0);


//Sub Menu for 2nd Main Menu Item ("schedule"):
	menus[2] = new menu(168, "vertical", 0, 0, -5, -5, "#fffef0", "#dae68a", "arial,Helvetica", 8, "normal", 
		"bold", "692e12", "814021", 1, "814021", 2, 62, false, true, false, true, 6, true, 4, 4, "black");
	menus[2].addItem("http://www.tinayoga.com/schedule.htm", "", 22, "left", "schedule of classes", 0);
	menus[2].addItem("http://www.tinayoga.com/classdescriptions.htm", "", 22, "left", "class descriptions", 0);
	menus[2].addItem("http://www.tinayoga.com/location.htm", "", 22, "left", "where to find tina", 0);
	menus[2].addItem("http://www.tinayoga.com/policy.htm", "", 22, "left", "yoga policy", 0);
	
	//Sub Menu for 1st Main Menu Item ("inspiration"):
	menus[3] = new menu(140, "vertical", 0, 0, -5, -5, "#fffef0", "#dae68a", "arial,Helvetica", 8, "normal", 
		"bold", "692e12", "814021", 1, "814021", 2, 62, false, true, false, true, 6, true, 4, 4, "black");
		menus[3].addItem("http://www.tinayoga.com/inspiration.htm", "", 22, "left", "Inspiration", 0);
	menus[3].addItem("http://www.tinayoga.com/monthlypose.htm", "", 22, "left", "Pose of the Month", 0);
	menus[3].addItem("http://www.tinayoga.com/questions.htm", "", 22, "left", "Q & A's", 0);


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