<!--
if (document.images){
  	images = new Array()
	images[0] = "../images/homeBut1b.gif"
	images[1] = "../images/homeBut2b.gif"
	images[2] = "../images/homeBut3b.gif"
	// Preload  images
	LoadImg = new Array()
	for(idx=0; idx < 3; idx++) {
		LoadImg[idx] = new Image()
		LoadImg[idx].src = images[idx]
		}
	}

function msAct(img1,ref1) {
	strPath = "images/";
	document.images[img1].src = strPath.concat(ref1);
	}

