	//public navigation bar configuration

	var color= new Array();
	color[1] = "#CD5806";
	color[2] = "#F0AD00";
	color[3] = "#A1A1A1";
	color[4] = "#A1A1A1";
	color[5] = "#A1A1A1";
	color[6] = "#A1A1A1";
	color[7] = "#A1A1A1";
	
	var section= new Array();
	section[1] = new navObject("about EO","/Public/About/About.aspx");
	section[2] = new navObject("member benefits","/Public/Benefits/Benefits.aspx");
	section[3] = new navObject("join now","/Public/About/HowToJoin.aspx");
	section[4] = new navObject("partners","/Public/Partners/Partners.aspx");
	section[5] = new navObject("press room","/Pressroom/Pressroom.aspx");
	section[6] = new navObject("contact us","/Public/Contact/contact.aspx");
	section[7] = new navObject("member login","/Login.aspx");
	
	var subsection = new Array();
	
	var subsection1= new Array();
	subsection1[1] = new navObject("how to join","/Public/About/HowToJoin.aspx");
	subsection1[2] = new navObject("chapter locations","/Public/About/Chapters.aspx");
	subsection1[3] = new navObject("leadership","/Public/About/Leadership.aspx");
	subsection1[4] = new navObject("testimonials","/Public/About/Testimonials.aspx");
	
	var subsection2= new Array();
	subsection2[1] = new navObject("make connections","/Public/Benefits/Peer2Peer.aspx");
	subsection2[2] = new navObject("events","/Public/Benefits/OnceInALifetime.aspx");
	subsection2[3] = new navObject("find solutions","/Public/Benefits/ExpertConnection.aspx");

	var subsection3= new Array();
	var subsection4= new Array();
	subsection4[1] = new navObject("affinity partners","/Public/Partners/PartnersSponsors.aspx");
	subsection4[2] = new navObject("strategic alliances","/Public/Partners/PartnersAlliances.aspx");
	
	var subsection5= new Array();
    subsection5[1] = new navObject("press releases","/Pressroom/pressrelease.aspx");
    subsection5[2] = new navObject("EO presspass","/Programs/EOPressPass/EOPressPass.aspx");
    subsection5[3] = new navObject("members in the news","/Pressroom/membersinthenews.aspx");
    subsection5[4] = new navObject("Octane","/Octane/index.html"); 
	
	var subsection6= new Array();
	var subsection7= new Array();
	
	subsection[1] = subsection1;
	subsection[2] = subsection2;
	subsection[3] = subsection3;
	subsection[4] = subsection4;
	subsection[5] = subsection5;
	subsection[6] = subsection6;
	subsection[7] = subsection7;
			
	//writing layer definitions for top nav bar
	
	document.write ('<style>');
	
	//writing navbar colors
	for (i=1; i<section.length; i++) {
		txt = '#navbar'+i+' {';
		txt += 'color: '+ color[i] + ';';
		txt += '}';

		document.write(txt);
	}

	for (i=1; i<section.length; i++) {
		txt = '#subnavbar'+i+' {';
		txt += 'position: absolute;';
		txt += 'top: 50px;'; 
		txt += 'left: 15px;';
		txt += 'height: 20px;'; 
		txt += 'width: 780px;';
		txt += 'background-color: #000;';
		txt += 'padding-top: 2px;';
		txt += 'padding-bottom: 2px;';
		txt += 'padding-left: 0px;';
		txt += 'padding-right: 0px;';
		txt += 'z-index: 6;';
		txt += 'visibility: hidden;';	
		//txt += 'background-color: '+ color[i] + ';'; 	
		txt += '}';
		
		document.write(txt);
	}
	
	//writing program headers color classes
	txt = '.headcolorabouteo {background-color: #CD5806;}';
	txt += '.headcolorbenefits {background-color: #F0AD00;}';
	txt += '.headcolorp2p {background-color: #CD5806;}';
	txt += '.headcolorlifetime {background-color: #9FAA00;}';
	txt += '.headcolorconnection {background-color: #4F8D97;}';
	document.write(txt);
	
	for (i=1; i<section.length; i++) {
		txt = '.headcolor'+i+' {';
		txt += '	background-color: '+ color[i] + ';';
		txt += '}';

		document.write(txt);
	}
	document.write ('</style>');
	
	function WriteTier3Menu(strEOPath)
	{
	}
