

 
//style
document.write("<style> .m{ position:absolute; width:160px; height:25px;   left:70px; top:170; text-align:right; border-style:solid;    border-width:1pt; border-color:#FEF5E6; visibility:hidden; padding:0px; z-index:0;} </style>");



//Divsion of Sub Menu
for (x=1; x <= 6; x++) {
document.write("<div id='" + mname[x] + "' class='m' onmouseout=' closem(" + x + ");' onmouseover='open" + x + "()'>  ");
document.write("<table cellspacing=0 cellpadding=2 border=0 width=100%>");
for (i = 1; i <= nsub[x]; i++)
{
document.write("<tr><td  align=right bgcolor=EAAA48 onmouseover= ");
if (nsubsub[x][i] == "Yes") {

document.write("open" + x + i + "(); ");
  }

document.write("><a href='" + ref[x][i] + "' class=tbots onmouseover=");
if (nsubsub[x][i] == "Yes") {
document.write("open" + x + i + "(); ");
  }

if (document.all) document.write("this.parentElement.bgColor='A05518';")
else if (document.getElementById) document.write("this.parentNode.style.backgroundcolor='FEF5E6';");
document.write("this.className='on1'; OnmouseOut=closem(" + x + ");this.className='off1';this.parentElement.bgColor='EAAA48'; >");
document.write(m[x][i] + "</a></td></tr>" );
document.write("<tr><td height=1 bgcolor=A05518></td></tr>");
}
document.write("</table></div>");
}

 




//Divsion of Sub Sub Menu

for (x=1; x <= 6; x++) {
for (i = 1; i <= nsub[x]; i++) {
if (nsubsub[x][i] == "Yes") {
document.write("<div id='" + msubname[x][i] + "' class='m' onmouseout='  closesub(" + x + "," + i + ")'");
document.write(" onmouseover='open" + x + i + "()'>");
document.write("<table cellspacing=0 cellpadding=2 border=0 width=100%>");
for (f = 1; f <= nssub[x][i]; f++)
{
document.write("<tr><td bgcolor=11387D><a href='" + sref[x][i][f] + "'");
document.write(" class=titl3 onmouseover=this.className='on1';this.parentElement.bgColor='A05518'; OnmouseOut=this.className='off1';this.parentElement.bgColor='11387D';  >");
document.write(sm[x][i][f] + "</a></td></tr><tr><td height=1 bgcolor=ffffff></td></tr>");
}
document.write("</table></div>");
}   } }




