	//	BUTTONS	//	by "C.C." Chamberlin	//	See pastelet instructions for use	//	Visit my pastelet archive at www.leadingobject.com/seminars/javascript		//	CUSTOMIZATION OPTIONS	//	None		Image.prototype.lolite = 0	Image.prototype.hilite = 0		//	registerRollover	//	This function sets up the rollover aspects for the current image		function registerRollover(whichimage,highlightimage)	{		//	First make sure the browser is even aware of images		if (document.images) {} else { return }				//	Check to see if we've loaded yet		if (whichimage.lolite != 0) return				//	Set up the two images		whichimage.lolite = new Image		whichimage.lolite.src = whichimage.src				whichimage.hilite = new Image		whichimage.hilite.src = highlightimage			}
