// 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 = "image04/04sidedown.jpg"
	HomeLayerup.src = "image04/04sideup.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|Master Courses|04_03.html|_parent";
		Tree[1]  = "2|0|Travelling Trainer|04_02.html|_parent";
		Tree[2]  = "3|0|Trainer Courses|04_04.html|_parent";
		Tree[3]  = "4|0|Awareness Course|04_06.html|_parent";
		Tree[4]  = "5|0|Upcoming Courses|04_05.php|_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="04_03.html">Master Courses');
document.write('<option value="04_04.html">Trainer courses');
document.write('<option value="04_02.html">Travelling Trainers');
document.write('<option value="04_06.html">Awareness Course');
document.write('<option value="04_05.html">Upcoming Courses');
document.write('<option value="">----------------');
document.write('<option value="../index.html">Home');
document.write('</select>');
document.write('</form>');
}

// show me -->

