function doOver(id){ document.getElementById(id).style.backgroundColor="#FFFFFF"; } function doOut(id){ document.getElementById(id).style.backgroundColor="#ebebed"; } function doMenu(thearea) { var toploc=0; var sub1time=0; for (var a=1; a < menudivarray.length; a++) { if (a!=1){toploc=toploc+16;} // this dimension affects graphic AREA menu items [IMG]. homelink = [1][1] for (var s=1; s < menudivarray[a].length; s++) { var adjtop=0; var vis="hidden"; if (s==1) { vis="visible"; //image button. if (sub1time==1) {var adjtop=-2;} //remove 2 pixels after last TXT link of current area. var sub1time=0; //turn off flag. } else { if (a==thearea){ // this dimension affects SECT menu items [TXT]. toploc=toploc+14;vis="visible"; if (s==2) {var adjtop=2;} //add 2 pixels after the IMG button of the current area. if (s==menudivarray[a].length-1) {sub1time=1} //trigger the last TXT link flag for the next loop. } } var areaid=menudivarray[a][s]; var toploc=toploc+adjtop //adjust locations for links in current area. var topdim=toploc+"px"; document.getElementById(areaid).style.visibility=vis; document.getElementById(areaid).style.top=topdim; } } }