		//<!--
		function rollOver(obj, sID, bRollOver) {
			var sPath = '/images/RevTechHeader_'
			
			if (bRollOver) {
				obj.style.backgroundImage = 'url(' +sPath + sID + '_hover.gif)'
				obj.style.cursor = 'hand';
			} else {
				obj.style.backgroundImage = 'url(' + sPath + sID + '.gif)'
				obj.style.cursor = 'default';
			}
			
		}
		//-->