
// 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 = "image02/02sideup.jpg"
	HomeLayerup.src = "image02/02sidedown.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|Land Based|02_03.html|_parent";
		Tree[1]	 = "2|1|Bushwalking|bushwalking.html|_parent";
		Tree[2]	 = "3|1|Canyoning|#|_parent";
		Tree[3]	 = "4|1|Mountain Biking|mountainbiking.html|_parent";
		Tree[4]	 = "5|1|Climbing & Abseiling|climbing&abseiling.html|_parent";
		Tree[5]	 = "6|1|Caving|#|_parent";
		Tree[6]	 = "7|1|4WD|4WD.html|_parent";
		Tree[7]	 = "8|1|Horse Riding|#|_parent";
		Tree[8]	 = "9|1|Skiing & Snowboarding|#|_parent";		
		Tree[9]  = "10|0|Water based|02_02.html|_parent";
		Tree[10]  = "11|10|Sea-kayaking|seakayaking.html|_parent";
		Tree[11] = "12|10|Freshwater Paddling|recreationalcanoeing&kayaking.html|_parent";
		Tree[12] = "13|10|Snorkelling & Diving|snorkelling&diving.html|_parent";
		Tree[13] = "14|10|Boating|boating.html|_parent";
		Tree[14] = "15|10|Surfing|surfing.html|_parent";
		Tree[15] = "16|10|Fishing|#|_parent";
		Tree[16] = "17|0|AAS|02_03.html|_parent";
		












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="02_02.html">Water Based');
document.write('<option value="02_03.html">Land Based');
document.write('<option value="">----------------');
document.write('<option value="../index.html">Home');
document.write('</select>');
document.write('</form>');
}

// show me -->
