<!--

	
	var strImagePath = "splash_nav/";
	
	function newImage(strFilename) {
		strFilename = strImagePath + strFilename;
		if (document.images) {
			objTempImage = new Image();
			objTempImage.src = strFilename;
			return objTempImage;
		}
	}
	
	one = newImage("section1_bt.jpg");
	oneOver = newImage("section1_bt_over.jpg");
	
	two = newImage("section2_bt.jpg");
	twoOver = newImage("section2_bt_over.jpg");
	
	three = newImage("section3_bt.jpg");
	threeOver = newImage("section3_bt_over.jpg");
	
	four = newImage("section4_bt.jpg");
	fourOver = newImage("section4_bt_over.jpg");
	
	five = newImage("section5_bt.jpg");
	fiveOver = newImage("section5_bt_over.jpg");
	
	six = newImage("section6_bt.jpg");
	sixOver = newImage("section6_bt_over.jpg");
	
	function changeImage(strLocation, strImage) {
		document.images[strLocation].src = eval(strImage + ".src");
	}
	
	

//-->