// 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 = "../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 = "../section01/image01/homelayerdown.jpg"
	HomeLayerup.src = "../section01/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|../index.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";


//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="search.php">Search');
document.write('<option value="links.html">Links');
document.write('<option value="contact.html">Contact');
document.write('<option value="store.html">Store');
document.write('<option value="">----------------');
document.write('<option value="../index.html">Home');
document.write('</select>');
document.write('</form>');
}
// show me -->


//screen size detection

