function init()
{
	//Main Menu items:
	menus[0] = new menu(22, "horizontal", 160, 10, -2, -2, "white", "#0000A0", "Verdana,Helvetica", 9, 
		"bold", "bold", "navy", "white", 1, "gray", 2, "rollover:images/tri-down1.gif:images/tri-down2.gif", false, true, true, true, 12, true, 4, 4, "white");
	menus[0].addItem("http://www.des-mar.com/index.html", "", 100, "center", "Home", 0);
	menus[0].addItem("#", "", 120, "center", "Our Dogs", 1);
	menus[0].addItem("#", "", 120, "center", "Available", 3);
	menus[0].addItem("#", "", 100, "center", "Misc Links", 2);

//Sub Menu for 1st Main Menu Item ("dogs"):
	menus[1] = new menu(135, "vertical", 0, 0, -5, -5, "#CACAFF", "#0000A0", "Verdana,Helvetica", 9, "bold", 
		"bold", "white", "white", 1, "gray", 2, 62, false, true, false, true, 6, true, 4, 4, "white");
	menus[1].addItem("", "", 22, "left", "Siberians", 5);
	menus[1].addItem("./shibas.htm", "", 22, "left", "Shiba Inu", 6);

//Sub Menu for 5th Main Menu Item ("siberian husky"):
	menus[5] = new menu(135, "vertical", 0, 0, -5, -5, "#CACAFF", "#0000A0", "Verdana,Helvetica", 9, "bold", 
		"bold", "white", "white", 1, "gray", 2, 62, false, true, false, true, 6, true, 4, 4, "white");
	menus[5].addItem("./sibes.htm", "", 22, "left", "Current", 0);
	menus[5].addItem("./sibes_coown.htm", "", 22, "left", "Bred by", 0);
	menus[5].addItem("./pastsibe.html", "", 22, "left", "Past", 0);

//Sub Menu for 6th Main Menu Item ("shiba inu"):
	menus[6] = new menu(135, "vertical", 0, 0, -5, -5, "#CACAFF", "#0000A0", "Verdana,Helvetica", 9, "bold", 
		"bold", "white", "white", 1, "gray", 2, 62, false, true, false, true, 6, true, 4, 4, "white");
	menus[6].addItem("./shibas.htm", "", 22, "left", "Current", 0);
	menus[6].addItem("./pastshiba.html", "", 22, "left", "Past", 0);


//Sub Menu for 2nd Main Menu Item ("misc links"):
	menus[2] = new menu(135, "vertical", 0, 0, -5, -5, "#CACAFF", "#0000A0", "Verdana,Helvetica", 9, "bold", 
		"bold", "white", "white", 1, "gray", 2, 62, false, true, false, true, 6, true, 4, 4, "white");
	menus[2].addItem("./history.html", "", 22, "left", "Our History", 0);
	menus[2].addItem("./links.html", "", 22, "left", "Misc Links", 0);
	menus[2].addItem("./WhatAboutBreeding.html", "", 22, "left", "Breeding Notes", 0);
	menus[2].addItem("./PetStorePuppy.html", "", 22, "left", "Pet Store Pups", 0);
	menus[2].addItem("./info.html", "", 22, "left","AKC Standards", 0);
	menus[2].addItem("http://www.des-mar.com/quilts/index.html", "", 22, "left","TCQS", 0);

//Sub Menu for 3rd Main Menu Item ("available"):
	menus[3] = new menu(135, "vertical", 0, 0, -5, -5, "#CACAFF", "#0000A0", "Verdana,Helvetica", 9, "bold", 
		"bold", "white", "white", 1, "gray", 2, 62, false, true, false, true, 6, true, 4, 4, "white");
	menus[3].addItem("./adults.htm", "", 22, "left", "Adults", 0);
	menus[3].addItem("", "", 22, "left", "Puppies", 4);

//Sub Menu for 4th Main Menu Item ("puppies"):
	menus[4] = new menu(135, "vertical", 0, 0, -5, -5, "#CACAFF", "#0000A0", "Verdana,Helvetica", 9, "bold", 
		"bold", "white", "white", 1, "gray", 2, 62, false, true, false, true, 6, true, 4, 4, "white");
	menus[4].addItem("./sibepuppies.htm", "", 22, "left", "Siberians", 0);
	menus[4].addItem("./shibapuppies.htm", "", 22, "left", "Shiba Inu", 0);



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