//INITSif (document.images){ ImageArray = new Array()}function BuildArray(){ if (document.images){  for (var i = 0; i < arguments.length; i++){   eval('ImageArray["' + arguments[i] + '0"] = new Image()')   eval('ImageArray["' + arguments[i] + '0"].src = "images/nav_' + arguments[i] + '_0.gif"')   eval('ImageArray["' + arguments[i] + '1"] = new Image()')   eval('ImageArray["' + arguments[i] + '1"].src = "images/nav_' + arguments[i] + '_1.gif"')  } }}function Rollover(which){ if (document.images){  eval('document.' + which + '.src = ImageArray["' + which + '1"].src') }}function Rollout(which){ if (document.images){  eval('document.' + which + '.src = ImageArray["' + which + '0"].src') }}function ShowMe(who) {	divel=document.getElementById(who);	divel.style.visibility="visible";}function HideMe(who) {	divel=document.getElementById(who);	divel.style.visibility="hidden";}function hexMe(who) {	clearTimeout(timeout);		h2="tech"+seeHex;	HideMe(h2);	s2="tech"+who;	ShowMe(s2);	seeHex=who;	//alert("who = "+who);		timeout=setTimeout('Hexa()',10000000);}function Hexa() {var z= parseFloat(seeHex)+1;	//alert("z = "+z);	if (z>4) {z=1}	h2="tech"+seeHex;	HideMe(h2);	s2="tech"+z;	ShowMe(s2);	seeHex=z;		timeout=setTimeout('Hexa()',10000000);}function start() {	timeout=setTimeout('Hexa()',8000000);}function flipMe(who) {	divel=document.getElementById(who);	x = divel.style.visibility;	if (x=="visible") {divel.style.visibility="hidden";}	else if (x=="hidden") {divel.style.visibility="visible";}}