var MENUS_ACTIVATED = true;
var NAVSCRIPTS = false;
var _uid = 1;
var _nodes = new Array();
var _maxDepth = 0;

function Node(id, name, sub)
{
    this.uid = _uid++;
    _nodes[this.uid] = this;
    this.id = id;
    this.name = name;
    this.superNode = null;
    this.menu = null;
    this.scrollMenu = null;
    this.timeoutId = 0;
    this.map = new Object();
    this.depth = -1;
    if (typeof sub != "undefined")
    {
        this.sub = sub;
    } else {
        this.sub = new Array();
    }

    for (var i = 0; i < this.sub.length; i++)
    {
        if (this.sub[i])
        {
            this.map[cleanName(this.sub[i].name)] = i;
            this.sub[i].superNode = this;
        }
    }
}

Node.prototype.getIndex = function (s)
{
    return this.map[cleanName(s)];
}

Node.prototype.getUrl = function (s)
{
	if (this.id)
	{
	    var path = "";
    	for (var i = 0; i < PAGE_DEPTH; ++i)
	    {
	        path += "../";
    	}

	    path += "articles/" + this.id + ".html";
		return path;
	}

	return 0;
}

Node.prototype.getMenu = function ()
{
    if (this.menu == null)
    {
        createSubMenu(this);
    }

    return this.menu;
}

Node.prototype.getScrollMenu = function ()
{
    if (this.scrollMenu == null)
    {
        createSubMenu(this, true);
    }

    return this.scrollMenu;
}

Node.prototype.getVisibleMenu = function ()
{
    if (this.menu && isVisible(this.menu))
    {
        return this.menu;
    }

    if (this.scrollMenu && isVisible(this.scrollMenu))
    {
        return this.scrollMenu;
    }

    return null;
}

function makeNode(id, name, sub)
{
    return new Node(id, name, sub);
}

function decorateDepth(node, depth)
{
    if (!node)
    {
        return;
    }

    if (typeof depth == "undefined")
    {
        depth = 0;
    }
    node.depth = depth;
    if (depth > _maxDepth)
    {
        _maxDepth = depth;
    }
    
    var len = node.sub.length;
    for (var i = 0; i < len; i++)
    {
        decorateDepth(node.sub[i], depth+1);
    }
}

function gotoNode(uid)
{
    if (!MENUS_ACTIVATED)
    {
        return;
    }

    var node = _nodes[uid];
    if (!node)
    {
        return;
    }

    var url = node.getUrl();
	if (url)
	{
		if (NAVSCRIPTS)
		{
			hideMenuTree(_menuRoot);
		}
    	document.location = url;
	}
}


// ---- Enter Menu Structure Here ----

var _menuRoot = makeNode(0, "",
                        [ 
                         makeNode("pe_channel", "People",
								  
                                  [
								   makeNode("../index", "HOME"),
								    makeNode("pe_channel", "People"),
                                   makeNode("at_athletes", "Athletes",									   
                                            [
                                             makeNode(0, "A-I",
											 	[
												makeNode("at_britchicks", "Brit Chicks"),
												makeNode("at_cara-beth_burnside", "Cara-Beth Burnside"),
                                             	makeNode("at_cintronc", "Conchita Cintr&#243;n"),
                                            	makeNode("at_comanecin", "Nadia Comaneci"),
                                             	makeNode("at_davisg", "Geena Davis"),
                                             	makeNode("at_detuscanj", "Joanna de Tuscan"),
                                             	makeNode("at_didriksonb", "Babe Didrikson"),
												makeNode("at_farewell", "Fab Five Farewell"),
                                             	makeNode("at_gibsona", "Althea Gibson"),
											 	makeNode("at_hammm", "Mia Hamm"),
												makeNode("at_lyn-z_adams_hawkins", "Lyn-Z Adams Hawkins"),
											 	makeNode("at_henies", "Sonja Henie"),
                                             	]),
                                             makeNode(0, "J-R",
												[
                                             	makeNode("at_joynerf", "Florence Griffith-Joyner"),
                                             	makeNode("at_jackie_joyner-kersee", "Jackie Joyner-Kersee"),
                                             	makeNode("at_kingbj", "Billie Jean King"),
												makeNode("at_julie_krone", "Julie Krone"),
                                             	makeNode("at_marblea", "Alice Marble"),
                                            	makeNode("at_melpomene", "Melpomene"),
                                             	makeNode("at_rosariok", "Krysti Rosario"),
                                             	]),
                                             makeNode(0, "S-Z",
												[
                                             	makeNode("at_sanchezc", "Cristina S&#225;nchez"),
												makeNode("at_sorenstama", "Annika Sorenstam"),
                                             	makeNode("at_lyn_stjames", "Lyn St. James"),
												makeNode("at_picabo_street", "Picabo Street"),
                                             	makeNode("at_abby_wambach", "Abby Wambach"),
                                            	makeNode("at_williamse", "Esther Williams"),
                                             	makeNode("at_williamss", "Serena Williams"),
                                             	makeNode("at_williamsv", "Venus Williams"),
                                             	]),
                                             ]),  makeNode("ss_astronauts_ix", "Astronauts",
								  			[
                                             makeNode("ss_rides", "Sally Ride"),
                                             makeNode("ss_tereshkovav", "Valentina Tereshkova"),
                                             	]),	makeNode("pe_aviators_ix", "Aviators",
											[
                                                makeNode("at_detuscanj", "Joanna de Tuscan"),												
												makeNode("hi_nightwitches", "Night Witches"),
												makeNode("ss_rides", "Sally Ride"),
												makeNode("hi_earharta_spy", "Was Amelia Earhart a U.S. Spy?"),
												makeNode("hi_wasp", "WASP"),
												makeNode("ae_wonderwoman", "Wonder Woman"),
                                             	]),	
                                   makeNode("ae_characters", "Characters",
								   			[
                                             makeNode("ae_buffy", "Buffy the Vampire Slayer"),
											 makeNode("ae_croftl", "Lara Croft"),
                                             makeNode("ae_drewn", "Nancy Drew"),
											 makeNode("ae_elektra", "<em>Elektra</em>"),
											 makeNode("ae_pevensies", "Susan Pevensie"),
											 makeNode("ae_wonderwoman", "Wonder Woman"),
											 makeNode("ae_xena", "Xena"),
                                             	]),	
                                   makeNode("ae_dance_ix", "Dancers",
											[
                                             makeNode("ae_bauschp", "Pina Bausch"),
                                             makeNode("ae_grahamm", "Martha Graham"),
											 makeNode("hi_harim", "Mata Hari"),
											 makeNode("at_henies", "Sonja Henie"),
                                             	]),	
                                   makeNode("hi_legends_ix", "Legends",
											[
                                             makeNode("hi_amazonexist", "Did the Amazons <i>Really</i> Exist?"),
											 makeNode("hi_mulanh", "Hua Mulan"),
											 makeNode("hi_pirates", "Pirates"),
											 makeNode("hi_samurai", "Samurai"),
											 makeNode("hi_vikings", "Vikings"),
                                             	]),	
                                   makeNode("hi_outlaws_ix", "Outlaws",
											[
                                             makeNode("hi_deerausoc", "Catalina de Erauso"),
                                             makeNode("hi_parkerb", "Bonnie Parker"),
											 makeNode("hi_readm", "Mary Read"),
                                             makeNode("hi_starrb", "Belle Starr"),
                                             	]),	
								   
								   makeNode("hi_spies_ix", "Spies",
								   			[
                                             	makeNode("hi_earharta_spy", "Was Amelia Earhart a U.S. Spy?"),
												makeNode("hi_harim", "Mata Hari"),
												makeNode("at_marblea", "Alice Marble"),
												makeNode("hi_waken", "Nancy Wake"),
                                             	]),	
								   makeNode("ae_stars", "Stars",
											[
                                             makeNode("ae_bauschp", "Pina Bausch"),
                                             makeNode("at_davisg", "Geena Davis"),
											 makeNode("at_davisg", "Althea Gibson"),
                                             makeNode("ae_grahamm", "Martha Graham"),
											 makeNode("at_henies", "Sonja Henie"),
                                             makeNode("ae_joliea", "Angelina Jolie"),
											 makeNode("ae_liul", "Lucy Liu"),
                                             makeNode("hi_oakleya", "Annie Oakley"),
											 makeNode("at_williamse", "Esther Williams"),
                                             makeNode("ae_yeohm", "Michelle Yeoh"),
                                             	]),
								   makeNode("hi_warriors", "Warriors",
								   			[
                                             makeNode("hi_military_ix", "Military",
											 	[
                                             	makeNode("hi_deerausoc", "Catalina de Erauso"),
												makeNode("hi_joanofarc", "Joan of Arc"),
												makeNode("hi_mulanh", "Hua Mulan"),
												makeNode("hi_readm", "Mary Read"),
												makeNode("hi_waken", "Nancy Wake"),
												makeNode("hi_nightwitches", "Night Witches"),
												makeNode("hi_wasp", "WASP"),
                                             	]),
											 makeNode("hi_samurai", "Samurai"),
											 makeNode("hi_vikings", "Vikings"),
                                             ]),
                                   ]),
                         makeNode("at_athletics", "Athletics",
                                  [
                                   makeNode("../index", "HOME"),
								   makeNode("at_channel", "Athletics"),
								   makeNode("at_athletes", "Athletes",
								   [
                                             makeNode(0, "A-I",
											 	[
                                             	makeNode("at_britchicks", "Brit Chicks"),
												makeNode("at_cara-beth_burnside", "Cara-Beth Burnside"),
                                             	makeNode("at_cintronc", "Conchita Cintr&#243;n"),
                                            	makeNode("at_comanecin", "Nadia Comaneci"),
                                             	makeNode("at_davisg", "Geena Davis"),
                                             	makeNode("at_detuscanj", "Joanna de Tuscan"),
                                             	makeNode("at_didriksonb", "Babe Didrikson"),
												makeNode("at_farewell", "Fab Five Farewell"),
                                             	makeNode("at_gibsona", "Althea Gibson"),
											 	makeNode("at_hammm", "Mia Hamm"),
												makeNode("at_lyn-z_adams_hawkins", "Lyn-Z Adams Hawkins"),
											 	makeNode("at_henies", "Sonja Henie"),
                                             	]),
                                             makeNode(0, "J-R",
												[
                                             	makeNode("at_joynerf", "Florence Griffith-Joyner"),
                                             	makeNode("at_jackie_joyner-kersee", "Jackie Joyner-Kersee"),
                                             	makeNode("at_julie_krone", "Julie Krone"),
												makeNode("at_kingbj", "Billie Jean King"),
                                             	makeNode("at_marblea", "Alice Marble"),
                                            	makeNode("at_melpomene", "Melpomene"),
                                             	makeNode("at_rosariok", "Krysti Rosario"),
                                             	]),
                                             makeNode(0, "S-Z",
												[
                                             	makeNode("at_sanchezc", "Cristina S&#225;nchez"),
												makeNode("at_sorenstama", "Annika Sorenstam"),
                                             	makeNode("at_lyn_stjames", "Lyn St. James"),
												makeNode("at_picabo_street", "Picabo Street"),
                                             	makeNode("at_abby_wambach", "Abby Wambach"),
                                            	makeNode("at_williamse", "Esther Williams"),
                                             	makeNode("at_williamss", "Serena Williams"),
                                             	makeNode("at_williamsv", "Venus Williams"),
                                             	]),
											 ]),
								    makeNode("at_sports", "Sports",
                                            [
                                             makeNode("at_aquatics_ix", "Aquatics",
												[
												 makeNode("at_williamse", "Esther Williams"),
                                             	]),	
                                             makeNode("at_archery_ix", "Archery",
												[
												makeNode("ss_amazon_etym", "Amazon Etymology"),
												makeNode("at_davisg", "Geena Davis"),
												makeNode("hi_amazonexist", "Did the Amazons <i>Really</i> Exist?"),
												makeNode("ae_pevensies", "Susan Pevensie"),
                                             	]),	
                                             makeNode("at_basketball_ix", "Basketball",
													  [
                                             makeNode("at_didriksonb", "Babe Didrikson"),
											 makeNode("at_jackie_joyner-kersee", "Jackie Joyner-Kersee"),
											 makeNode("at_abby_wambach", "Abby Wambach"),
                                             	]),
											 makeNode("at_boxing", "Boxing",
													  [
                                             makeNode("at_rosariok", "Krysti Rosario"),
                                             	]),
                                             makeNode("at_bullfighting", "Bullfighting",
													  [
                                             makeNode("at_cintronc", "Conchita Cintr&#243;n"),
											 makeNode("at_sanchezc", "Cristina S&#225;nchez"),
                                             	]),
											 makeNode("at_equestrian", "Equestrian",
											 [
                                             makeNode("at_julie_krone", "Julie Krone"),
											   	]),
                                             makeNode("at_fencing", "Fencing",
											 [
                                             makeNode("at_detuscanj", "Joanna de Tuscan"),
											  makeNode("at_sabreathens", "Women&#146;s Sabre Is Scoring Points"),
                                             	]),
                                             makeNode("at_golf", "Golf",
													  [
                                             makeNode("at_didriksonb", "Babe Didrikson"),
											 makeNode("at_gibsona", "Althea Gibson"),
											 makeNode("at_sorenstama", "Annika Sorenstam"),
                                             	]),
											 makeNode("at_gymnastics_ix", "Gymnastics",
											 		[
                                             makeNode("at_comanecin", "Nadia Comaneci"),
                                             	]),
											 makeNode("at_iceskating_ix", "Ice Skating",
													  [
											 makeNode("at_henies", "Sonja Henie"),
                                             	]),
											 makeNode("at_motorsports_ix", "Motor Sports",
													  [
                                             makeNode("at_lyn_stjames", "Lyn St. James"),
                                             	]),
											 
											 makeNode("at_multisport_ix", "Multisport",
													  [
                                             makeNode("at_didriksonb", "Babe Didrikson"),
											 makeNode("at_jackie_joyner-kersee", "Jackie Joyner-Kersee"),
                                             	]),
											 
											 makeNode("at_skateboarding", "Skateboarding",
													  [
                                             makeNode("at_cara-beth_burnside", "Cara-Beth Burnside"),
											 makeNode("at_lyn-z_adams_hawkins", "Lyn-Z Adams Hawkins"),
                                             	]),
											  makeNode("at_skydiving_ix", "Skydiving",
													  [
                                             makeNode("at_britchicks", "Brit Chicks"),
											 makeNode("ss_tereshkovav", "Valentina Tereshkova"),
											 makeNode("hi_waken", "Nancy Wake"),
                                             	]),
											 makeNode("at_skiing_ix", "Skiing",
													  [
                                             makeNode("at_picabo_street", "Picabo Street"),
                                             	]),
											  makeNode("at_snowboarding_ix", "Snowboarding",
													  [
                                             makeNode("at_cara-beth_burnside", "Cara-Beth Burnside"),
                                             	]),
											 makeNode("at_soccer_ix", "Soccer",
													  [
                                             makeNode("at_farewell", "Fab Five Farewell"),
											  makeNode("at_hammm", "Mia Hamm"),
											 makeNode("at_abby_wambach", "Abby Wambach"),
                                             	]),
                                             makeNode("at_tennis", "Tennis",
													  [
										 	 makeNode("at_battlesexes", "The Battle of the Sexes Match"),
											 makeNode("at_gibsona", "Althea Gibson"),
                                             makeNode("at_kingbj", "Billie Jean King"),
											 makeNode("at_marblea", "Alice Marble"),											 
											 makeNode("at_williamss", "Serena Williams"),
											 makeNode("at_williamsv", "Venus Williams"),
                                             	]),
											 makeNode("at_track", "Track and Field",
													  [
                                             makeNode("at_didriksonb", "Babe Didrikson"),
											 makeNode("at_joynerf", "Florence Griffith-Joyner"),
											 makeNode("at_jackie_joyner-kersee", "Jackie Joyner-Kersee"),
											 makeNode("at_melpomene", "Melpomene"),
                                             	]),
                                             ]),
									makeNode("at_fitness", "Fitness",
											 [
                                             makeNode("at_knees", "Getting to Know the ACL"),
                                             ]),   
									
								   makeNode("at_features", "Features",
											 [
                                             makeNode("at_battlesexes", "The Battle of the Sexes Match"),
											 makeNode("at_farewell", "Fab Five Farewell"),                                             
											 makeNode("at_sabreathens", "Women&#146;s Sabre Is Scoring Points"),
                                             ]),                            
                                   ]),
                        makeNode("ae_channel", "Arts\xA0& Entertainment",
                                  [
								   makeNode("../index", "HOME"),
								   makeNode("ae_channel", "Arts\xA0& Entertainment"),
                                   makeNode("ae_characters", "Characters",
								   			[
                                             makeNode("ae_buffy", "Buffy the Vampire Slayer"),
											 makeNode("ae_croftl", "Lara Croft"),
                                             makeNode("ae_drewn", "Nancy Drew"),
											 makeNode("ae_elektra", "<em>Elektra</em>"),
											 makeNode("ae_pevensies", "Susan Pevensie"),
											 makeNode("ae_wonderwoman", "Wonder Woman"),
											 makeNode("ae_xena", "Xena"),
                                             	]),	    
								   makeNode("ae_stars", "Stars",
								   			[
                                             makeNode("ae_bauschp", "Pina Bausch"),
                                             makeNode("at_davisg", "Geena Davis"),
											 makeNode("at_davisg", "Althea Gibson"),
                                             makeNode("ae_grahamm", "Martha Graham"),
											 makeNode("at_henies", "Sonja Henie"),
                                             makeNode("ae_joliea", "Angelina Jolie"),
											 makeNode("ae_liul", "Lucy Liu"),
                                             makeNode("hi_oakleya", "Annie Oakley"),
											 makeNode("at_williamse", "Esther Williams"),
                                             makeNode("ae_yeohm", "Michelle Yeoh"),
                                             ]),  
								   makeNode("ae_multimedia", "Multimedia",
								   			[
                                             makeNode("ae_books_ix", "Books",
													[  
													 makeNode("hi_deerausoc", "Catalina de Erauso"),
													 makeNode("ae_drewn", "Nancy Drew"),
													 makeNode("ae_pevensies", "Susan Pevensie"),
													 makeNode("hi_vikings", "Vikings"),
                                             ]),
											 makeNode("ae_comics_ix", "Comics",
													[  
													 makeNode("ae_croftl", "Lara Croft"),
													 makeNode("ae_elektra", "<i>Elektra</i>"),
													 makeNode("ae_wonderwoman", "Wonder Woman"),
													 
                                             ]),
											  makeNode("ae_dance_ix", "Dance",
													[  
													 makeNode("ae_bauschp", "Pina Bausch"),													 
													 makeNode("ae_grahamm", "Martha Graham"),
													 makeNode("hi_harim", "Mata Hari"),
													 makeNode("at_henies", "Sonja Henie"),
                                             ]),
											    makeNode("ae_film_ix", "Film",
													[  
													 makeNode("ae_buffy", "Buffy the Vampire Slayer"),
													 makeNode("ae_croftl", "Lara Croft"),
													 makeNode("ae_crouching", "<i>Crouching Tiger, Hidden Dragon</i>"),													 
													 makeNode("ae_davisg", "Geena Davis"),
													 makeNode("ae_elektra", "<i>Elektra</i>"),
													 makeNode("at_henies", "Sonja Henie"),
													 makeNode("ae_joliea", "Angelina Jolie"),
													 makeNode("ae_liul", "Lucy Liu"),
													 makeNode("hi_mulanh", "Hua Mulan"),
													 makeNode("at_williamse", "Esther Williams"),
													 makeNode("ae_wonderwoman", "Wonder Woman"),
													 makeNode("ae_yeohm", "Michelle Yeoh"),
													 
                                             ]),
												 makeNode("ae_games_ix", "Games",
													[  
													 makeNode("ae_croftl", "Lara Croft"),
													 makeNode("ae_drewn", "Nancy Drew"),
													 makeNode("ae_elektra", "<i>Elektra</i>"),
													 makeNode("at_lyn-z_adams_hawkins", "Lyn-Z Adams Hawkins"),
                                             ]),
												 makeNode("ae_poetry_ix", "Poetry",
													[  
													 makeNode("hi_mulanh", "Hua Mulan"),
                                             ]),
												 makeNode("ae_television_ix", "Television",
													[  
													 makeNode("at_battlesexes", "The Battle of the Sexes Match"),
													 makeNode("ae_buffy", "Buffy the Vampire Slayer"),
													 makeNode("ae_wonderwoman", "Wonder Woman"),
													 makeNode("ae_xena", "Xena"),
                                             ]),
                                             ]),       
								   makeNode("ae_features", "Features",
											[
                                             makeNode("ae_liul", "Lucy Liu: Steel Angel"),											 
											 makeNode("ae_yeohm", "Michelle Yeoh: A Kick Above The Rest"),
											 makeNode("ae_trousers", "Who Wears the Pants? Trailblazers in Trousers"),
                                             ]),
                                   ]),
						makeNode("hi_channel", "History",
                                  [
								   makeNode("../index", "HOME"),
								   makeNode("hi_channel", "History"),
                                   makeNode("hi_adventurers", "Adventurers",
								   			[
                                             
											 makeNode("hi_duelists", "Duelists",
											 	[
                                             	makeNode("hi_deerausoc", "Catalina de Erauso"),
												makeNode("hi_toplessduel", "Did Women Duel Topless?"),
                                             	]),
											 makeNode("hi_explorers_ix", "Explorers",
											 	[
												makeNode("hi_earharta_spy", "Was Amelia Earhart a U.S. Spy?"),
												makeNode("ss_rides", "Sally Ride"),
												makeNode("ss_tereshkovav", "Valentina Tereshkova"),
                                             	]),
											 makeNode("hi_gladiators", "Gladiators"),
											 makeNode("hi_markswomen", "Markswomen",
											 	[
                                             	makeNode("hi_oakleya", "Annie Oakley"),
                                             	]),
                                             makeNode("hi_outlaws", "Outlaws",
											 	[
                                             	makeNode("hi_deerausoc", "Catalina de Erauso"),
												makeNode("hi_parkerb", "Bonnie Parker"),
												makeNode("hi_readm", "Mary Read"),
												makeNode("hi_starrb", "Belle Starr"),
                                             	]),
                                             makeNode("hi_pirates", "Pirates",
											 	[
                                             	makeNode("hi_readm", "Mary Read"),
                                             	]),
											 makeNode("hi_spies", "Spies",
												[
												makeNode("hi_harim", "Mata Hari"),
												makeNode("at_marblea", "Alice Marble"),
												makeNode("hi_waken", "Nancy Wake"),
												makeNode("hi_earharta_spy", "Was Amelia Earhart a U.S. Spy?"),
                                             	]),
                                             ]),
								   makeNode("hi_warriors", "Warriors",
								   			[
											 makeNode("hi_military_ix", "Military",
											 	[
                                             	makeNode("hi_deerausoc", "Catalina de Erauso"),
												makeNode("hi_joanofarc", "Joan of Arc"),
												makeNode("hi_mulanh", "Hua Mulan"),
												makeNode("hi_nightwitches", "Night Witches"),
												makeNode("hi_readm", "Mary Read"),
												makeNode("hi_waken", "Nancy Wake"),												
												makeNode("hi_wasp", "WASP"),
                                             	]),
											 makeNode("hi_samurai", "Samurai"),
											 makeNode("hi_vikings", "Vikings"),
                                             ]),
								   makeNode("hi_mythlegends", "Mythology\xA0& Legends",
								   				[
                                             	makeNode("hi_mythology_ix", "Mythology",
													[
                                             	makeNode("ss_amazon_etym", "Amazon Etymology"),
												makeNode("hi_penthesilea", "Penthesilea"),
												makeNode("hi_vikings", "Vikings"),
                                             		]),
												makeNode("hi_legends_ix", "Legends",
														 [
                                             	makeNode("hi_amazonexist", "Did the Amazons <i>Really</i> Exist?"),
												makeNode("hi_mulanh", "Hua Mulan"),
												makeNode("hi_pirates", "Pirates"),
												makeNode("hi_samurai", "Samurai"),
												makeNode("hi_vikings", "Vikings"),
                                             			]),
                                             	]),
								 makeNode("hi_features", "Features",
								   				[
                                             	makeNode("hi_amazonexist", "Did the Amazons <i>Really</i> Exist?"),
												makeNode("hi_toplessduel", "Did Women Duel Topless?"),
												makeNode("ss_weaponsforher", "Weapons for Her"),
												makeNode("hi_earharta_spy", "Was Amelia Earhart a U.S. Spy?"),
                                             	]),
                                   ]),
                         makeNode("ss_channel", "Science\xA0& Society",
                                  [
								   makeNode("../index", "HOME"),
								   makeNode("ss_channel", "Science\xA0& Society"),
                                   makeNode("ss_archaeology_ix", "Archaeology",
								   				[
                                             	makeNode("hi_amazonexist", "Did the Amazons <i>Really</i> Exist?"),
												makeNode("hi_gladiators", "Gladiators"),
												makeNode("hi_vikings", "Vikings"),
                                             	]),
								   makeNode("ss_language_ix", "Language",
												[
                                             	makeNode("ss_amazon_etym", "Amazon Etymology"),
                                             	]),
								   makeNode("ss_scientificexp_ix", "Scientific Exploration",
												[
                                             	makeNode("ss_rides", "Sally Ride"),
												makeNode("ss_tereshkovav", "Valentina Tereshkova"),
                                             	]),
								    makeNode("ss_features", "Features",
											 [
                                             makeNode("at_knees", "Getting to Know the ACL"),
											 makeNode("ss_weaponsforher", "Weapons for Her"),
											 makeNode("ae_trousers", "Who Wears the Pants? Trailblazers in Trousers"),
                                             ]),       
								   
                                   ]),
						 makeNode(0, "Company",
                                  [
								   makeNode("../index", "HOME"),
                                   makeNode("woa_mission", "Our Mission"), 
								   makeNode("woa_about", "About woa.tv",
											[
                                             makeNode("woa_about", "Company"),
											 makeNode("woa_contributors", "Contributors"),
                                             ]),   
								   makeNode("woa_terms", "Terms\xA0of\xA0Use/ Privacy\xA0Policy"),
								   makeNode("woa_help", "Help"),
								   makeNode("woa_contact", "Contact Us"),
								   ]),
						 
						 makeNode(0, "Theme",
                                  [
								   makeNode("../index", "HOME"),
								   makeNode("../index", "Now Showing",
											[
                                             makeNode("theme_current", "Trailblazers"),
											 makeNode("theme_steel", "Women of Steel"),
											 ]),
                                   ]),
						 
                         ]);

decorateDepth(_menuRoot);
