//
// Copyright 2002 Sean Pease
//
// This code is freeware as long as the copyright is included
// It may be used and distributed freely...
//

//
// Initialize options for navigator
//
function init_newsnav()
{

	// Set variable to document.form_name.element to save typing :-)
	var d = document.newsnav.choices;

	// Define options for selector
	d.options.length = 0
	d.options[d.options.length] = new Option("More News Releases","null");
  	d.options[d.options.length] = new Option("AAF Fall 2010 Quarterly Seminar","fall2010.html");	
	d.options[d.options.length] = new Option("AAF Spring 2010 Quarterly Event","spring2010.html");		
	d.options[d.options.length] = new Option("AAF Winter 2009 Quarterly Event","winter2009.html");		
	d.options[d.options.length] = new Option("AAF Fall 2009 Quarterly Event","fall2009.html");		
  	d.options[d.options.length] = new Option("AAF Summer 2009 Quarterly Event","summer2009.html");		
	d.options[d.options.length] = new Option("AAF Spring 2009 Quarterly Event","spring2009.html");		
  	d.options[d.options.length] = new Option("Mary Kay Donates Trees to the Addison Arbor Foundation","marykay2008.html");	
	d.options[d.options.length] = new Option("AAF 4th Annual Arbor Day Event - Saturday November 8, 2008","arborday2008.html");	
  	d.options[d.options.length] = new Option("AAF Quarterly Education Event - Saturday May 3, 2008","aaf5_3_08.html");
	d.options[d.options.length] = new Option("AAF Sponsors Third Annual Arbor Day Event","arborday2007.html");
  	d.options[d.options.length] = new Option("Dallas County Master Gardener 2007 Training","dcmg2007.html");
    d.options[d.options.length] = new Option("Tour Scotland with TCE Horticulture Educator Dale Groom","tce-st2007.html");
	d.options[d.options.length] = new Option("NLC Announces 2006 Finalists for Municipal Excellence Awards","nlc2006.html");
	d.options[d.options.length] = new Option("AAF Sponsors 2nd Annual Arbor Day Seminar","arborday2006.html");
	d.options[d.options.length] = new Option("Residents Support Vision of \'Grand Boulevard\'","beltline.html");	
	d.options[d.options.length] = new Option("Addison Celebrates Arbor Day 2005","arborday2005.html");
	d.options[d.options.length] = new Option("AAF Awarded TFS Partnership Grant","grant.html");
	d.options[d.options.length] = new Option("Tom Thumb's Good Neighbor Program Supports AAF","goodneighbor.html");
	d.options[d.options.length] = new Option("Recycling Benefits the Addison Arbor Foundation","recycling.html");

	// Blank option for future additions
	//d.options[d.options.length] = new Option("","");
	
	// Set the first option as the default display
	d.options[0].selected = true;
}

//
// Get the chosen page
//
function new_url (passed_value)
{
	// First check that a place holder has not been chosen
	if (passed_value == "null") return;

	// Load the new url into the existing window
	location.href = passed_value;
	
	// Or use this call to load the new url into a new window
	//window.open(passed_value, "blank")
}
