<!---                   Scripts/theMenu.js         29-Jan-08     --->


/*
* Don't change or remove the head comments!
*
* DHTML hierarchical, object oriented menu: VB MENU 1.5
* Copyright (C) 2003-2004  Vladimir Bodurov
*
*   Version  1.5  2004-03-06
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
* Lesser General Public License for more details.

* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
*
* Copy of GNU Lesser General Public License at: http://www.gnu.org/copyleft/lesser.txt
*
* Source code home page: http://www.bodurov.com/menu.html
*/


// Creating and Managing object

var mc = new MenuCreator();

// Your menu starts here. | This is where you will create the links you want.
mc.Start();
mc.Add("Home","Index.cfm","_self");
mc.Add("Flight Plan","Root.cfm","_self");
	mc.Start();
	mc.Add("<B>Our Mission Statement</B>","Root.cfm","_self");
		mc.Start();
    mc.Add("<I>As a signatory to the John Wayne Settlement Agreement, the Airport Working Group has the legal authority and takes the responsibility to advocate your rights by defending and enforcing the Agreement and working to ensure its continuation in perpetuity.</I>","Root.cfm","_self");
		mc.End();
	mc.Add("Membership","Member.cfm?Action=New","_self");
		mc.Start();
    mc.Add("Join the Airport Working Group","Member.cfm?Action=New","_self");
		mc.End();
	mc.End();
mc.Add("About AWG","Root.cfm","_self");
	mc.Start();
	mc.Add("Board of Directors","Contact.cfm?Type=BoD","_self");
	mc.Add("Endorsements","UnderCon.cfm","_self");
	mc.End();
mc.Add("Airport Monitor","http://www4.passur.com/sna.html");
	mc.Start();
	mc.Add("JWA Airport Monitor","http://www4.passur.com/sna.html");
	mc.End();
mc.Add("Document Archive","Root.cfm","_self");
	mc.Start();
	mc.Add("Settlement Agreement (Summary)","http://www.ocair.com/aboutJWA/settlement_agreement.htm");
	mc.Add("Access and Noise Reports","http://ocair.com/newsandfacts/NoiseReports.htm");
	mc.End();
mc.Add("Bulletin Board","BBoard.cfm","_self");
	mc.Start();
  mc.Add("Join the Conversation","BBoard.cfm","_self");
	mc.End();
mc.Add("Your Opinion Counts","Root.cfm","_self");
	mc.Start();
	mc.Add("Register a Noise Complaint","Root.cfm","_self");
		mc.Start();
  	mc.Add("JWA Noise Abatement: 949-252-5185","Root.cfm","_self");
		mc.End();
	mc.Add("Contact Elected Officials","Contact.cfm?Type=EO","_self");
		mc.Start();
  	mc.Add("Obtain contact information, send an EMail","Contact.cfm?Type=EO","_self");
		mc.End();
	mc.Add("AWG Suggestion Box","SendEM.cfm?Type=Sug","_self");
		mc.Start();
  	mc.Add("How can we better serve you?","SendEM.cfm?Type=Sug","_self");
		mc.End();
	mc.End();
mc.Add("SNA Airport News","http://MyBreakingNews.info/DemoNews.cfm?Client=AWG&Host=The Airport Working Group&UserID=Demo&Title=John Wayne Airport&Keyword=^John Wayne Airport^&Return=http://AirportWorkingGroup.org/Root.cfm","_self");
	mc.Start();
	mc.Add("The latest developments","http://MyBreakingNews.info/DemoNews.cfm?Client=AWG&Host=The Airport Working Group&UserID=Demo&Title=John Wayne Airport&Keyword=^John Wayne Airport^&Return=http://AirportWorkingGroup.org/Root.cfm","_self");
	mc.End();
mc.End();
// Your menu ends here

// if you uncomment this the menu will be vertical instead of horizontal
mc.Vertical();

// if you uncomment this the box will be centered
//mc.Center();

// if you uncomment this you will have to write the first level youself
//mc.DoNotWriteFirstLevel();

mc.Draw();


