function newImage(arg) {
	if (document.images) {
		rslt = new Image();
		rslt.src = arg;
		return rslt;
	}
}


var preloadFlag = false;
function preloadImages() {
	if (document.images) {
		bio2_1_on = newImage("images/bio2_01-over.gif");
		bio2_2_on = newImage("images/bio2_02-over.gif");
		bio2_3_on = newImage("images/bio2_03-over.gif");
		bio2_4_on = newImage("images/bio2_04-over.gif");
		bio2_5_on = newImage("images/bio2_05-over.gif");
		bio2_6_on = newImage("images/bio2_06-over.gif");
		bio2_7_on = newImage("images/bio2_07-over.gif");
		bio2_8_on = newImage("images/bio2_08-over.gif");
		bio2_9_on = newImage("images/bio2_09-over.gif");
		bio2_10_on = newImage("images/bio2_10-over.gif");
		bio2_11_on = newImage("images/bio2_11-over.gif")
		bio2_12_on = newImage("images/bio2_12-over.gif")
		
		bio2_1_off = newImage("images/bio2_01.gif");
		bio2_2_off = newImage("images/bio2_02.gif");
		bio2_3_off = newImage("images/bio2_03.gif");
		bio2_4_off = newImage("images/bio2_04.gif");
		bio2_5_off = newImage("images/bio2_05.gif");
		bio2_6_off = newImage("images/bio2_06.gif");
		bio2_7_off = newImage("images/bio2_07.gif");
		bio2_8_off = newImage("images/bio2_08.gif");
		bio2_9_off = newImage("images/bio2_09.gif");
		bio2_10_off = newImage("images/bio2_10.gif");
		bio2_11_off = newImage("images/bio2_11.gif");
		bio2_12_off = newImage("images/bio2_12.gif");

		preloadFlag = true;
	}
}

function imgSwitch(img_name,cur_name){
	if (img_name == cur_name)
		return true;
		
	var on_image = eval(img_name + "_on.src");
	var off_image = eval(img_name + "_off.src");
	var test_image = document[img_name].src;
	
	if (test_image == on_image){
		document[img_name].src = eval(img_name+"_off.src");
	} else if (test_image == off_image){
		document[img_name].src = eval(img_name+"_on.src");
	}
}
