
function tabStrip() 
{  

/*
Static menu script II (By maXimus, maximus@nsimail.com, http://absolutegb.com/maximus/)
Modified slightly/ permission granted to Dynamic Drive to feature script in archive
For full source, usage terms, and 100's more DHTML scripts, visit http://dynamicdrive.com
*/

//configure below variable for menu width, position on page
var menuwidth=110
var offsetleft=10
var offsettop=90

var ns4=document.layers?1:0
var ie4=document.all?1:0
var ns6=document.getElementById&&!document.all?1:0



var menui = new Array();
var menul = new Array();

//configure below for menu items. Extend list as desired

menui[0]="Home";
//menui[1]="Community";
menui[1]="Supervisors";
menui[2]="Public Notice";
menui[3]="Parks";
menui[4]="Roads";
menui[5]="Zoning";
menui[6]="Recycling";
menui[7]="Directory";

menul[0]="http://www.harborcreektownship.org";
//menul[1]="community.htm";
menul[1]="http://www.harborcreektownship.org/supervisors.htm";
menul[2]="http://www.harborcreektownship.org/notice.shtml";
menul[3]="http://www.harborcreektownship.org/parks.htm";
menul[4]="http://www.harborcreektownship.org/roads.shtml";
menul[5]="http://www.harborcreektownship.org/zoning.shtml";
menul[6]="http://www.harborcreektownship.org/recycle.htm";
menul[7]="http://www.harborcreektownship.org/directory.htm";

for (i=0;i<=menui.length-1;i++)
if (ie4||ns6) {
   if (i!=7)
      {
         document.write('<TD align="middle" bgcolor="#808080" BORDERCOLOR="white" ONCLICK="location=\''+menul[i]+'\'" onmouseover="className=\'menuh\'" onMouseout="className=\'menu\'"><CENTER><FONT SIZE="2" face="Tahoma" color="white">'+menui[i]+'<td><FONT SIZE="1" face="Tahoma" color="black">|</FONT></td></FONT></TD>')
      }
   else
      {
         document.write('<td align="middle" bgcolor="#808080" BORDERCOLOR="white" ONCLICK="location=\''+menul[i]+'\'" onmouseover="className=\'menuh\'" onMouseout="className=\'menu\'"><CENTER><FONT SIZE="2" face="Tahoma" color="white">'+menui[i]+'</FONT></TD>')
      }
}
else if (ns4){document.write('<TD align="middle" bgcolor="#808080"><ILAYER><LAYER width="'+menuwidth+'" onmouseover="bgColor=\'yellow\'" onmouseout="bgColor=\'white\'"><CENTER><A HREF="'+menul[i]+'" class=menulinks>'+menui[i]+'</A></CENTER></LAYER></ILAYER></TD>')}
}