function preLoad(oImg,hColour){

	oImg.targetBGC = hColour;

}

function hiLight(oImg){

	if(!oImg.lastBGC){
		oImg.lastBGC = oImg.style.backgroundColor;

		if(oImg.style){
			oImg.style.backgroundColor = oImg.targetBGC;
		}else{
			oImg.bgColor =  oImg.lastBGC;
		}

	}

}

function loLight(oImg){

	if(oImg.style){
		oImg.style.backgroundColor = oImg.lastBGC;
	}else{
		oImg.bgColor =  oImg.lastBGC;
	}

	oImg.lastBGC = false;

}

window.onload = init;

function init(){

	if(0 && (oMain = window.hMain) && oMain.style){

		oMain.style.visibility	= 'visible';
		oMain.style.filter		= 'blendTrans(duration=50)';

		oMain.filters[0].Apply();
		oMain.style.visibility	= 'hidden';
		oMain.filters[0].Play();

	}

}