/*
 *  Section Navigation: Teachings
 */
  
  
/**                                            **
 **    TOP LEVEL (ALWAYS VISIBLE) NAV ITEMS    **
 **                                            **/
 
var locations_map        	= new NavItem ( "locations_map",         	'World Locations Map',        		"/locations/index.html" );  
var ashrams        		= new NavItem ( "ashrams",         	'Ashrams',        		"/locations/ashrams.html" );  
var city_centers		= new NavItem ( "city_centers",         	'City Centers',        		"/locations/centers/index.html" ); 
var affiliated_centers        		= new NavItem ( "affiliated_centers",         	'Affiliated Centers',        		"/locations/affiliat.html" ); 
var affiliated_teachers        		= new NavItem ( "affiliated_teachers",         	'Affiliated Teachers',        		"/locations/affiliated/outsteac.html" ); 
var headquarters        		= new NavItem ( "headquarters",         	'Yoga Camp Headquarters',        		"/locations/camp.html" ); 
var contactus        		= new NavItem ( "contactus",         	'Contact Us',        		"/locations/contact-us.html" ); 
var directory        		= new NavItem ( "directory",         	'Email Address Directory',        		"/locations/e-mails.html" ); 
     
    // variable 'base_section_home' is global, and always represents the section's homepage
    // all top-level nav items are always a child of base_section_home
    base_section_home.addChild(locations_map);
    base_section_home.addChild(ashrams);
    base_section_home.addChild(city_centers);
    base_section_home.addChild(affiliated_centers);
    base_section_home.addChild(affiliated_teachers);
    base_section_home.addChild(headquarters);
    base_section_home.addChild(contactus);
    base_section_home.addChild(directory);

    



/**                                            **
 **         NESTED SUBLEVEL NAV ITEMS          **
 **                                            **/
 
var northamerica        		= new NavItem ( "northamerica",         	'North America',        		"/locations/northamerica.html" ); 
var southamerica        		= new NavItem ( "southamerica",         	'South America',        		"/locations/southamerica.html" ); 
var europe        		= new NavItem ( "europe",         	'Europe',        		"/locations/europe.html" ); 
var mideast        		= new NavItem ( "mideast",         	'Middle East',        		"/locations/mideast.html" ); 
var india        		= new NavItem ( "india",         	'India',        		"/locations/india.html" ); 

    // build the hierarchy 
    locations_map.addChild(northamerica);
    locations_map.addChild(southamerica);
    locations_map.addChild(europe);
    locations_map.addChild(mideast);
    locations_map.addChild(india);
    
