if(navigator)  {
        
	button01=new Image();
		button01.src="../../Images/Btns/PrevBtnOver.jpg";

	button02=new Image();
		button02.src="../../Images/Btns/PrevBtnDown.jpg";

	button03=new Image();
		button03.src="../../Images/Btns/NextBtnOver.jpg";

	button04=new Image();
		button04.src="../../Images/Btns/NextBtnDown.jpg";
		        
}


function jumpTo (theLength,theIndex) {

	var Page = new Array(theLength + 1);
		Page[1] = "./1_Contents.html";
		Page[2]= "./2_Introduction.html";
		Page[3] = "./3_Fracture_Mechanics.html";
		Page[4] = "./4_Flake_Morphology.html";
		Page[5] = "./5_Basic_Techniques.html";
		Page[6] = "./6_Lower_Paleolithic_Tool.html";
		Page[7] = "./7_Intro_Mid_Paleolithic.html";
		Page[8] = "./8_Middle_Paleolithic_Tool.html";
		Page[9] = "./9_Upper_Paleolithic_Tool.html";
		Page[10] = "./10_Summation.html";
		Page[11] = "./11_Conlcusion.html";
		Page[12] = "../Exercises.html#Assignment4";

	for (i = 0; i <= theLength; i++) {
		if(theIndex==i) {
			window.location = Page[i+1];
		}
	}
}



