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_Glaciation.html";
		Page[4] = "./4_Wurm_Weichsel.html";
		Page[5] = "./5_Vegetation.html";
		Page[6] = "./6_Bestiary.html";
		Page[7] = "./7_Sea_Level_Changes.html";
		Page[8] = "./8_References.html";
		Page[9] = "./9_Conclusion.html";
		Page[10] = "../Exercises.html#Assignment4";
		
	for (i = 0; i <=theLength; i++) {
		if(theIndex==i) {
			window.location = Page[i+1];
		}
	}
}

