// JavaScript Document
<!-- hide me

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 = "image05/05sidedown.jpg"
	HomeLayerup.src = "image05/05sideup.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|Labs|05_02.html|_parent";
		Tree[1]	 = "2|0|Skills and Ethics|05_03.html|_parent";
		Tree[2]  = "3|0|Research|05_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="05_02.html">Labs');
document.write('<option value="05_03.html">Skills and Ethics Series');
document.write('<option value="05_04.html">Research');
document.write('<option value="">----------------');
document.write('<option value="../index.html">home');
document.write('</select>');
document.write('</form>');
}
// show me -->


