// JavaScript Document
<!-- hide me
//main menu rollover images
if(document.images){
	
	Nav02_up = new Image
	Nav02_down = new Image
	Nav03_up = new Image
	Nav03_down= new Image
	Nav04_up= new Image
	Nav04_down= new Image
	Nav05_up= new Image
	Nav05_down= new Image
	Nav06_up= new Image
	Nav06_down= new Image
	Nav07_up= new Image
	Nav07_down= new Image
	Nav08_up= new Image
	Nav08_down= new Image
	HomeLayerup = new Image
	HomeLayerDown = new Image
	
	Nav02_up.src = "../section01/image01/01_nav02up.gif"
	Nav02_down.src = "../section01/image01/01_nav02down.gif"
	Nav03_up.src = "../section01/image01/01_nav03up.gif"
	Nav03_down.src = "../section01/image01/01_nav03down.gif"
	Nav04_up.src = "../section01/image01/01_nav04up.gif"
	Nav04_down.src = "../section01/image01/01_nav04down.gif"
	Nav05_up.src = "../section01/image01/01_nav05up.gif"
	Nav05_down.src = "../section01/image01/01_nav05down.gif"
	Nav06_up.src = "../section01/image01/01_nav06up.gif"
	Nav06_down.src = "../section01/image01/01_nav06down.gif"
	Nav07_up.src = "../section01/image01/01_nav07up.gif"
	Nav07_down.src = "../section01/image01/01_nav07down.gif"
	Nav08_up.src = "../section01/image01/01_nav08up.gif"
	Nav08_down.src = "../section01/image01/01_nav08down.gif"
	HomeLayerDown.src = "image07/07sidedown.jpg"
	HomeLayerup.src = "image07/07sideup.jpg"
	}
	function chgImg(imgName,newImg) {
	if (document.images){
	document[imgName].src=eval(newImg +".src")
						}
	}

// side navigation - relates also to ../sidenav.js
var Tree = new Array;
	// nodeId | parentNodeId | nodeName | nodeUrl
	Tree[0]  = "1|0|Local Parks|07_02.html|_parent";
	Tree[1]	 = "2|0|Youth|07_03.html|_parent";
	Tree[2]	 = "2|0|States Advocates|07_04.html|_parent";


	
//pulldown navigation
function navSite(the_site)
{
	window.location = the_site;
}

function creatingForm(){

document.write('<form name="form">');
document.write('<select name = "selectUrl" onChange = "navSite(this.options[this.selectedIndex].value);" class="txtfld">');
document.write('<option value="">Go to....');
document.write('<option value="07_02.html">Local Parks');
document.write('<option value="07_03.html">Youth');
document.write('<option value="07_04.html">State Advocates');
document.write('<option value="">----------------');
document.write('<option value="../index.html">Home');
document.write('</select>');
document.write('</form>');
}



// show me -->
