// JavaScript Document
<!-- hide me

//images swapping
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 = "image01/01_nav02up.gif"
	Nav02_down.src = "image01/01_nav02down.gif"
	Nav03_up.src = "image01/01_nav03up.gif"
	Nav03_down.src = "image01/01_nav03down.gif"
	Nav04_up.src = "image01/01_nav04up.gif"
	Nav04_down.src = "image01/01_nav04down.gif"
	Nav05_up.src = "image01/01_nav05up.gif"
	Nav05_down.src = "image01/01_nav05down.gif"
	Nav06_up.src = "image01/01_nav06up.gif"
	Nav06_down.src = "image01/01_nav06down.gif"
	Nav07_up.src = "image01/01_nav07up.gif"
	Nav07_down.src = "image01/01_nav07down.gif"
	Nav08_up.src = "image01/01_nav08up.gif"
	Nav08_down.src = "image01/01_nav08down.gif"
	HomeLayerDown.src = "image01/homelayerdown.jpg"
	HomeLayerup.src = "image01/homelayerup.jpg"
	}

function chgImg(imgName,newImg) {
	if (document.images){
	document[imgName].src=eval(newImg +".src")
	}
}

var Tree = new Array;
		// nodeId | parentNodeId | nodeName | nodeUrl
		Tree[0]  = "1|0|About us|01_01.html|_parent";
		Tree[1]	 = "2|0|LNT Organisation|01_02.html|_parent";
		Tree[2]  = "3|0|LNT History|01_03.html|_parent";
		Tree[3]  = "4|0|7 principles|01_04.html|_parent";
		Tree[4]  = "5|4|Plan & Prepare|01_05.html|_parent";
		Tree[5]  = "6|4|Travel & Camp|01_06.html|_parent";
		Tree[6]  = "7|4|Rubbish Removal|01_07.html|_parent";
		Tree[7]  = "8|4|Leave what you find|01_08.html|_parent";
		Tree[8]  = "9|4|Minimise Campfires|01_09.html|_parent";
		Tree[9]  = "10|4|Respect Wildlife|01_10.html|_parent";
		Tree[10]  = "11|4|Be Considerate|01_11.html|_parent";
		Tree[11]  = "12|3|The need|01_12.html|_parent";
		Tree[12]  = "13|3|Conception|01_13.html|_parent";
		Tree[13]  = "14|3|Development|01_14.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="01_01.html">About us');
document.write('<option value="01_02.html">LNT Organisation');
document.write('<option value="01_03.html">History');
document.write('<option value="01_04.html">7 Principles');
document.write('<option value="">----------------');
document.write('<option value="../index.html">Home');
document.write('</select>');
document.write('</form>');
}

// show me -->


//screen size detection

