// Pull Down Menu Script
// ----------------------------------------------------------------

var secs2
var timerID2 = null
var timerRunning2 = false
var delay2 = 1000

function InitializeTimer2()
{
    secs2 = 20
    StopTheClock2()
    StartTheTimer2()
}

function StopTheClock2()
{
    if(timerRunning2)
        clearTimeout(timerID2)
    timerRunning2 = false
}

function StartTheTimer2()
{
    if (secs2==0)
    {
        StopTheClock2()
        resetMenu()
    }
    else
    {
        secs2 = secs2 - 1
        timerRunning2 = true
        timerID2 = self.setTimeout("StartTheTimer2()", delay2)
    }
}


function resetMenu()
{
  // Reset Menu
  setMenuPos("mnuCompany");document.getElementById("mnuCompany").style.visibility="Hidden";
  setMenuPos("mnuProducts");document.getElementById("mnuProducts").style.visibility="Hidden";
  setMenuPos("mnuServices");document.getElementById("mnuServices").style.visibility="Hidden";
  setMenuPos("mnuOrder");document.getElementById("mnuOrder").style.visibility="Hidden";
  setMenuPos("mnuDownload");document.getElementById("mnuDownload").style.visibility="Hidden";
  setMenuPos("mnuHelp");document.getElementById("mnuHelp").style.visibility="Hidden";
  setMenuPos("mnuResources");document.getElementById("mnuResources").style.visibility="Hidden";
  setMenuPos("mnuClients");document.getElementById("mnuClients").style.visibility="Hidden";
  setMenuPos("mnuPartners");document.getElementById("mnuPartners").style.visibility="Hidden";
}

function setMenuPos(sMenuItem)
{
  var winW = 630, winH = 460;
  var iFactor;

  if (parseInt(navigator.appVersion)>3) {
   if (navigator.appName=="Netscape") {
    winW = window.innerWidth;
    winH = window.innerHeight;
   }
   if (navigator.appName.indexOf("Microsoft")!=-1) {
    winW = document.body.offsetWidth;
    winH = document.body.offsetHeight;
   }
  }
  // Set New Menu  
  switch (sMenuItem)
  {
     case "mnuCompany"   : iFactor=0;break;
     case "mnuProducts"  : iFactor=1;break;
     case "mnuServices"  : iFactor=2;break;
     case "mnuOrder"     : iFactor=3;break;
     case "mnuDownload"  : iFactor=4;break;
     case "mnuHelp"      : iFactor=5;break;
     case "mnuResources" : iFactor=6;break;
     case "mnuClients"   : iFactor=7;break;
     case "mnuPartners"  : iFactor=8;break;
  }
  iFactor = iFactor * 80;
  document.getElementById(sMenuItem).style.left=parseInt((winW/2)-400)-10+iFactor;
}

function menu(sMenuItem,sStatus)
{
  resetMenu();
  document.getElementById(sMenuItem).style.visibility=sStatus;
  InitializeTimer2();
}

function subMenu(oSubMenuItem, sStatus)
{
  // Set Sub Menu Color
  if (sStatus=='on')
  {
    oSubMenuItem.style.backgroundColor="#B4BABF";
  }
  else
  {
    oSubMenuItem.style.backgroundColor="#74808C";
  } 
}

function displayMenu()
{
  var sIndent    = "&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;";
  var sSeparator = "<tr><td height='2' bgcolor='#59636C'></td></tr>";
//59636C

//  document.write("<script language=javascript src=snowflake.js></script>");

  // --- Main Pull Down Menu
  document.write("<table width='100%' cellspacing='0' cellpadding='0' bgcolor='#777777'>");
  document.write("<tr align='left' valign='bottom'>");
  document.write("<td><a href=\"http://www.apexpacific.com\" onMouseOut=\"MM_swapImgRestore()\" onMouseOver=\"MM_swapImage('Company','','/images/btncompany2.jpg',1);menu('mnuCompany','visible')\"><img src=\"/images/btncompany.jpg\" alt=\"Company\" name=\"Company\" border=\"0\"></a></td>");
  document.write("<td><a href=\"/products.html\" onMouseOut=\"MM_swapImgRestore()\" onMouseOver=\"MM_swapImage('Products','','/images/btnproducts2.jpg',1);menu('mnuProducts','visible')\"><img src=\"/images/btnproducts.jpg\" alt=\"Products\" name=\"Products\" border=\"0\"></a></td>");
  document.write("<td><a href=\"/searchmarketing_promotion.html\" onMouseOut=\"MM_swapImgRestore()\" onMouseOver=\"MM_swapImage('Services','','/images/btnservices2.jpg',1);menu('mnuServices','visible')\"><img src=\"/images/btnservices.jpg\" alt=\"Services\" name=\"Services\" border=\"0\"></a></td>");
  document.write("<td><a href=\"/order.html\" onMouseOut=\"MM_swapImgRestore()\" onMouseOver=\"MM_swapImage('Order','','/images/btnorder2.jpg',1);menu('mnuOrder','visible')\"><img src=\"/images/btnorder.jpg\" alt=\"Order\" name=\"Order\" border=\"0\"></a></td>");
  document.write("<td><a href=\"/download.html\" onMouseOut=\"MM_swapImgRestore()\" onMouseOver=\"MM_swapImage('Download','','/images/btndownload2.jpg',1);menu('mnuDownload','visible')\"><img src=\"/images/btndownload.jpg\" alt=\"Download\" name=\"Download\" border=\"0\"></a></td>");
  document.write("<td><a href=\"/knowledgebase/\" target=\"_blank\" onMouseOut=\"MM_swapImgRestore()\" onMouseOver=\"MM_swapImage('Help','','/images/btnhelp2.jpg',1);menu('mnuHelp','visible')\"><img src=\"/images/btnhelp.jpg\" alt=\"Help\" name=\"Help\"  border=\"0\"></a></td>");
  document.write("<td><a href=\"/newsletters/index.html\" onMouseOut=\"MM_swapImgRestore()\" onMouseOver=\"MM_swapImage('Resources','','/images/btnresources2.jpg',1);menu('mnuResources','visible')\"><img src=\"/images/btnResources.jpg\" alt=\"Resources\" name=\"Resources\"  border=\"0\"></a></td>");
  document.write("<td><a href=\"/case_studies.html\" onMouseOut=\"MM_swapImgRestore()\" onMouseOver=\"MM_swapImage('Clients','','/images/btnclients2.jpg',1);menu('mnuClients','visible')\"><img src=\"/images/btnclients.jpg\" alt=\"Clients\" name=\"Clients\"  border=\"0\"></a></td>");
  document.write("<td><a href=\"/reseller.html\" onMouseOut=\"MM_swapImgRestore()\" onMouseOver=\"MM_swapImage('Partners','','/images/btnpartners2.jpg',1);menu('mnuPartners','visible')\"><img src=\"/images/btnpartners.jpg\" alt=\"Partners\" name=\"Partners\"  border=\"0\"></a></td>");
  document.write("<td width='500' align='right'></td>");
  document.write("</tr>");
  document.write("</table>");

  // --- Company Sub Menu
  document.write("<div id=\"mnuCompany\" style=\"position:absolute; left:41px; top:109px; width:168px; z-index:2; visibility:hidden; float:left;filter:alpha(opacity=90);-moz-opacity:0.9;opacity:0.9;\" onMouseOver=\"menu('mnuCompany','visible')\" >");
  document.write("  <table width=\"100%\" border=\"0\" cellpadding=\"2\" cellspacing=\"1\" bgcolor=\"#59636C\">");
  document.write("    <tr><td height=20 bgcolor=\"#74808C\" class=\"PanelItem\"  onMouseOver=\"subMenu(this,'on')\" onMouseOut=\"subMenu(this,'off')\"><a class=\"SubMenu\" href=\"/aboutus.html\">About ApexPacific</a></td></tr>");
  document.write("    <tr><td height=20 bgcolor=\"#74808C\" class=\"PanelItem\"  onMouseOver=\"subMenu(this,'on')\" onMouseOut=\"subMenu(this,'off')\"><a class=\"SubMenu\" href=\"/news.asp\">News & Press release</a></td></tr>");
  document.write("    <tr><td height=20 bgcolor=\"#74808C\" class=\"PanelItem\"  onMouseOver=\"subMenu(this,'on')\" onMouseOut=\"subMenu(this,'off')\"><a class=\"SubMenu\" href=\"/awards.html\">Awards & Achievements</a></td></tr>");
  document.write("    <tr><td height=20 bgcolor=\"#74808C\" class=\"PanelItem\"  onMouseOver=\"subMenu(this,'on')\" onMouseOut=\"subMenu(this,'off')\"><a class=\"SubMenu\" href=\"/press.html\">Press & Publications</a></td></tr>");
  document.write("    <tr><td height=20 bgcolor=\"#74808C\" class=\"PanelItem\"  onMouseOver=\"subMenu(this,'on')\" onMouseOut=\"subMenu(this,'off')\"><a class=\"SubMenu\" href=\"/contactus.html\">Contact Us</a></td></tr>");
  document.write("  </table>");
  document.write("</div>");

  // --- Products Sub Menu
  document.write("<div id=\"mnuProducts\" style=\"position:absolute; left:57px; top:109px; width:168px; z-index:2; visibility:hidden float:left;filter:alpha(opacity=90);-moz-opacity:0.9;opacity:0.9;\" onMouseOver=\"menu('mnuProducts','visible')\" >"); 
  document.write("  <table width=\"100%\" border=\"0\" cellpadding=\"2\" cellspacing=\"1\" bgcolor=\"#59636C\">");
  document.write("    <tr><td height=20 bgcolor=\"#74808C\" class=\"PanelItem\"  onMouseOver=\"subMenu(this,'on')\" onMouseOut=\"subMenu(this,'off')\"><a class=\"SubMenu\" href=\"/promotionsuite.html\">Dynamic Promotion Suite</a></td></tr>");
  document.write("    <tr><td height=20 bgcolor=\"#74808C\" class=\"PanelItem\"  onMouseOver=\"subMenu(this,'on')\" onMouseOut=\"subMenu(this,'off')\"><a class=\"SubMenu\" href=\"/submission.html\">Dynamic Submission</a></td></tr>");
  document.write("    <tr><td height=20 bgcolor=\"#74808C\" class=\"PanelItem\"  onMouseOver=\"subMenu(this,'on')\" onMouseOut=\"subMenu(this,'off')\"><a class=\"SubMenu\" href=\"/bidmax.html\">Dynamic Bid Maximizer</a></td></tr>");
  document.write("    <tr><td height=20 bgcolor=\"#74808C\" class=\"PanelItem\"  onMouseOver=\"subMenu(this,'on')\" onMouseOut=\"subMenu(this,'off')\"><a class=\"SubMenu\" href=\"/mailcomm.html\">Dynamic Mail Communicator</a></td></tr>");
  document.write("    <tr><td height=20 bgcolor=\"#74808C\" class=\"PanelItem\"  onMouseOver=\"subMenu(this,'on')\" onMouseOut=\"subMenu(this,'off')\"><a class=\"SubMenu\" href=\"/webranking.html\">Dynamic Web Ranking</a></td></tr>");
  document.write("    <tr><td height=20 bgcolor=\"#74808C\" class=\"PanelItem\"  onMouseOver=\"subMenu(this,'on')\" onMouseOut=\"subMenu(this,'off')\"><a class=\"SubMenu\" href=\"/linkpromoter.html\">Dynamic Link Promotor</a></td></tr>");
  document.write("    <tr><td height=20 bgcolor=\"#74808C\" class=\"PanelItem\"  onMouseOver=\"subMenu(this,'on')\" onMouseOut=\"subMenu(this,'off')\"><a class=\"SubMenu\" href=\"/emailvalidator.html\">Dynamic Email Validator</a></td></tr>");
  document.write(sSeparator);
  document.write("    <tr><td height=20 bgcolor=\"#74808C\" class=\"PanelItem\"  onMouseOver=\"subMenu(this,'on')\" onMouseOut=\"subMenu(this,'off')\"><a class=\"SubMenu\" href=\"/download.html\">Free 30 Days Trial</a></td></tr>");
  document.write("    <tr><td height=20 bgcolor=\"#74808C\" class=\"PanelItem\"  onMouseOver=\"subMenu(this,'on')\" onMouseOut=\"subMenu(this,'off')\"><a class=\"SubMenu\" href=\"/systemreq.html\">System Requirements</a></td></tr>");
  document.write("  </table>");
  document.write("</div>");

  // --- Services Sub Menu
  document.write("<div id=\"mnuServices\" style=\"position:absolute; left:57px; top:109px; width:168px; z-index:2; visibility:hidden float:left;filter:alpha(opacity=90);-moz-opacity:0.9;opacity:0.9;\" onMouseOver=\"menu('mnuServices','visible')\" >"); 
  document.write("  <table width=\"100%\" border=\"0\" cellpadding=\"2\" cellspacing=\"1\" bgcolor=\"#59636C\">");
  document.write("    <tr><td height=20 bgcolor=\"#74808C\" class=\"PanelItem\"  onMouseOver=\"subMenu(this,'on')\" onMouseOut=\"subMenu(this,'off')\"><a class=\"SubMenu\" href=\"http://www.dynamicseo.com\" >Dynamic SEO</a></td></tr>");
  document.write("    <tr><td height=20 bgcolor=\"#74808C\" class=\"PanelItem\"  onMouseOver=\"subMenu(this,'on')\" onMouseOut=\"subMenu(this,'off')\"><a class=\"SubMenu\" href=\"searchmarketing_promotion.html\" >SEO Services</a></td></tr>");
  document.write("    <tr><td height=20 bgcolor=\"#74808C\" class=\"PanelItem\"  onMouseOver=\"subMenu(this,'on')\" onMouseOut=\"subMenu(this,'off')\"><a class=\"SubMenu\" href=\"http://www.apexreach.com/pay-per-click-ppc-management.html\" >PPC Management</a></td></tr>");
  document.write("    <tr><td height=20 bgcolor=\"#74808C\" class=\"PanelItem\"  onMouseOver=\"subMenu(this,'on')\" onMouseOut=\"subMenu(this,'off')\"><a class=\"SubMenu\" href=\"/sitestats.html\">Site Traffic Analysis</a></td></tr>");
  document.write("    <tr><td height=20 bgcolor=\"#74808C\" class=\"PanelItem\"  onMouseOver=\"subMenu(this,'on')\" onMouseOut=\"subMenu(this,'off')\"><a class=\"SubMenu\" href=\"http://www.apexreach.com/internet-marketing-college.html\" >SEM Training</a></td></tr>");
  document.write("  </table>");
  document.write("</div>");

  // --- Order Sub Menu
  document.write("<div id=\"mnuOrder\" style=\"position:absolute; left:57px; top:109px; width:168px; z-index:2; visibility:hidden float:left;filter:alpha(opacity=90);-moz-opacity:0.9;opacity:0.9;\" onMouseOver=\"menu('mnuOrder','visible')\" > ");
  document.write("  <table width=\"100%\" border=\"0\" cellpadding=\"2\" cellspacing=\"1\" bgcolor=\"#59636C\">");
  document.write("    <tr><td height=20 bgcolor=\"#74808C\" class=\"PanelItem\"  onMouseOver=\"subMenu(this,'on')\" onMouseOut=\"subMenu(this,'off')\"><a class=\"SubMenu\" href=\"https://www.apexpacific.com/shoppingcart/products.asp\" target=\"_blank\">Dynamic Software</a></td></tr>");
  document.write("    <tr><td height=20 bgcolor=\"#74808C\" class=\"PanelItem\"  onMouseOver=\"subMenu(this,'on')\" onMouseOut=\"subMenu(this,'off')\"><a class=\"SubMenu\" href=\"https://www.apexpacific.com/shoppingcart/products_upg.asp\" target=\"_blank\">Dynamic Software Upgrades</a></td></tr>");
  document.write("    <tr><td height=20 bgcolor=\"#74808C\" class=\"PanelItem\"  onMouseOver=\"subMenu(this,'on')\" onMouseOut=\"subMenu(this,'off')\"><a class=\"SubMenu\" href=\"https://www.apexpacific.com/secure/engsubscript.asp\" target=\"_blank\">Engine Data Renewal</a></td></tr>");
  document.write(sSeparator);
  document.write("    <tr><td height=20 bgcolor=\"#74808C\" class=\"PanelItem\"  onMouseOver=\"subMenu(this,'on')\" onMouseOut=\"subMenu(this,'off')\"><a class=\"SubMenu\" href=\"http://www.dynamicseo.com/signup.html\" target=\"_blank\">Dynamic SEO</a></td></tr>");
  document.write("    <tr><td height=20 bgcolor=\"#74808C\" class=\"PanelItem\"  onMouseOver=\"subMenu(this,'on')\" onMouseOut=\"subMenu(this,'off')\"><a class=\"SubMenu\" href=\"http://www.dynamicsitestats.com/products/pricing.html\" target=\"_blank\">Dynamic SiteStats</a></td></tr>");
  document.write(sSeparator);
  document.write("    <tr><td height=20 bgcolor=\"#74808C\" class=\"PanelItem\"  onMouseOver=\"subMenu(this,'on')\" onMouseOut=\"subMenu(this,'off')\"><a class=\"SubMenu\" href=\"/pricelist.html\">Dynamic Software Price List</a></td></tr>");
  document.write("    <tr><td height=20 bgcolor=\"#74808C\" class=\"PanelItem\"  onMouseOver=\"subMenu(this,'on')\" onMouseOut=\"subMenu(this,'off')\"><a class=\"SubMenu\" href=\"/offer.asp\">Special Promotion</a></td></tr>");
  document.write("    <tr><td height=20 bgcolor=\"#74808C\" class=\"PanelItem\"  onMouseOver=\"subMenu(this,'on')\" onMouseOut=\"subMenu(this,'off')\"><a class=\"SubMenu\" href=\"/agreement.html\">Agreement & Privacy Policy</a></td></tr>");
  document.write("  </table>");
  document.write("</div>");

  // --- Download Sub Menu
  document.write("<div id=\"mnuDownload\" style=\"position:absolute; left:57px; top:109px; width:168px; z-index:2; visibility:hidden float:left;filter:alpha(opacity=90);-moz-opacity:0.9;opacity:0.9;\" onMouseOver=\"menu('mnuDownload','visible')\" > ");
  document.write("  <table width=\"100%\" border=\"0\" cellpadding=\"2\" cellspacing=\"1\" bgcolor=\"#59636C\">");
  document.write("    <tr><td height=20 bgcolor=\"#74808C\" class=\"PanelItem\"  onMouseOver=\"subMenu(this,'on')\" onMouseOut=\"subMenu(this,'off')\"><a class=\"SubMenu\" href=\"/download.html\">Download Dynamic Software</a></td></tr>");
  document.write("    <tr><td height=20 bgcolor=\"#74808C\" class=\"PanelItem\"  onMouseOver=\"subMenu(this,'on')\" onMouseOut=\"subMenu(this,'off')\"><a class=\"SubMenu\" href=\"/upgrade.html\">Download Upgrades</a></td></tr>");
  document.write("  </table>");
  document.write("</div>");

  // --- Help Sub Menu
  document.write("<div id=\"mnuHelp\" style=\"position:absolute; left:57px; top:109px; width:168px; z-index:2; visibility:hidden float:left;filter:alpha(opacity=90);-moz-opacity:0.9;opacity:0.9;\" onMouseOver=\"menu('mnuHelp','visible')\" > ");
  document.write("  <table width=\"100%\" border=\"0\" cellpadding=\"2\" cellspacing=\"1\" bgcolor=\"#59636C\">");
  document.write("    <tr><td height=20 bgcolor=\"#74808C\" class=\"PanelItem\"  onMouseOver=\"subMenu(this,'on')\" onMouseOut=\"subMenu(this,'off')\"><a class=\"SubMenu\" href=\"/knowledgebase/\" target=\"_blank\">Knowledge Base</a></td></tr>");
  document.write("    <tr><td height=20 bgcolor=\"#74808C\" class=\"PanelItem\"  onMouseOver=\"subMenu(this,'on')\" onMouseOut=\"subMenu(this,'off')\"><a class=\"SubMenu\" href=\"/support.html\">Support Center</a></td></tr>");
  document.write("    <tr><td height=20 bgcolor=\"#74808C\" class=\"PanelItem\"  onMouseOver=\"subMenu(this,'on')\" onMouseOut=\"subMenu(this,'off')\"><a class=\"SubMenu\" href=\"/support2.html\">Sales Inquiry</a></td></tr>");
  document.write("    <tr><td height=20 bgcolor=\"#74808C\" class=\"PanelItem\"  onMouseOver=\"subMenu(this,'on')\" onMouseOut=\"subMenu(this,'off')\"><a class=\"SubMenu\" href=\"/supportpolicy.html\">Support Policy</a></td></tr>");
  document.write("  </table>");
  document.write("</div>");

  // --- Resources Sub Menu
  document.write("<div id=\"mnuResources\" style=\"position:absolute; left:57px; top:109px; width:188px; z-index:2; visibility:hidden float:left;filter:alpha(opacity=90);-moz-opacity:0.9;opacity:0.9;\" onMouseOver=\"menu('mnuResources','visible')\" > ");
  document.write("  <table width=\"100%\" border=\"0\" cellpadding=\"2\" cellspacing=\"1\" bgcolor=\"#59636C\">");
  document.write("    <tr><td height=20 bgcolor=\"#74808C\" class=\"PanelItem\"  onMouseOver=\"subMenu(this,'on')\" onMouseOut=\"subMenu(this,'off')\"><a class=\"SubMenu\" href=\"/newsletters/index.html\">Newsletter Archive</a></td></tr>");
//  document.write("    <tr><td height=20 bgcolor=\"#74808C\" class=\"PanelItem\"  onMouseOver=\"subMenu(this,'on')\" onMouseOut=\"subMenu(this,'off')\"><a class=\"SubMenu\" href=\"/forum/\"  target=\"_blank\">Discussion Forum</a></td></tr>");
  document.write(sSeparator);
  document.write("    <tr><td height=20 bgcolor=\"#74808C\" class=\"PanelItem\"  onMouseOver=\"subMenu(this,'on')\" onMouseOut=\"subMenu(this,'off')\"><a class=\"SubMenu\" href=\"/searchenginenews.html\">Search Engine News</a></td></tr>");
  document.write("    <tr><td height=20 bgcolor=\"#74808C\" class=\"PanelItem\"  onMouseOver=\"subMenu(this,'on')\" onMouseOut=\"subMenu(this,'off')\"><a class=\"SubMenu\" href=\"/drive_traffic.html\">Drive Traffic to your site</a></td></tr>");
  document.write("    <tr><td height=20 bgcolor=\"#74808C\" class=\"PanelItem\"  onMouseOver=\"subMenu(this,'on')\" onMouseOut=\"subMenu(this,'off')\"><a class=\"SubMenu\" href=\"/stay_with_customers.html\">Keeping your customers</a></td></tr>");
  document.write("    <tr><td height=20 bgcolor=\"#74808C\" class=\"PanelItem\"  onMouseOver=\"subMenu(this,'on')\" onMouseOut=\"subMenu(this,'off')\"><a class=\"SubMenu\" href=\"/payperclick.html\">Stay on top of the Competitions</a></td></tr>");
  document.write("    <tr><td height=20 bgcolor=\"#74808C\" class=\"PanelItem\"  onMouseOver=\"subMenu(this,'on')\" onMouseOut=\"subMenu(this,'off')\"><a class=\"SubMenu\" href=\"http://www.corprat.com\" target=\"_blank\">Business Coaching</a></td></tr>");
  document.write("    <tr><td height=20 bgcolor=\"#74808C\" class=\"PanelItem\"  onMouseOver=\"subMenu(this,'on')\" onMouseOut=\"subMenu(this,'off')\"><a class=\"SubMenu\" href=\"http://www.business-broker.com.au\" target=\"_blank\">Business Broker</a></td></tr>");
  document.write("  </table>");
  document.write("</div>");

  // --- Clients Sub Menu
  document.write("<div id=\"mnuClients\" style=\"position:absolute; left:57px; top:109px; width:168px; z-index:2; visibility:hidden float:left;filter:alpha(opacity=90);-moz-opacity:0.9;opacity:0.9;\" onMouseOver=\"menu('mnuClients','visible')\" > ");
  document.write("  <table width=\"100%\" border=\"0\" cellpadding=\"2\" cellspacing=\"1\" bgcolor=\"#59636C\">");
  document.write("    <tr><td height=20 bgcolor=\"#74808C\" class=\"PanelItem\"  onMouseOver=\"subMenu(this,'on')\" onMouseOut=\"subMenu(this,'off')\"><a class=\"SubMenu\" href=\"/case_studies.html\">Case Studies</a></td></tr>");
  document.write("    <tr><td height=20 bgcolor=\"#74808C\" class=\"PanelItem\"  onMouseOver=\"subMenu(this,'on')\" onMouseOut=\"subMenu(this,'off')\"><a class=\"SubMenu\" href=\"/client_list.html\">Client List</a></td></tr>");
  document.write("    <tr><td height=20 bgcolor=\"#74808C\" class=\"PanelItem\"  onMouseOver=\"subMenu(this,'on')\" onMouseOut=\"subMenu(this,'off')\"><a class=\"SubMenu\" href=\"/testimonial.html\">Testimonials</a></td></tr>");
  document.write("    <tr><td height=20 bgcolor=\"#74808C\" class=\"PanelItem\"  onMouseOver=\"subMenu(this,'on')\" onMouseOut=\"subMenu(this,'off')\"><a class=\"SubMenu\" href=\"/feedback2.html\">Submit Feed back</a></td></tr>");
  document.write("    <tr><td height=20 bgcolor=\"#74808C\" class=\"PanelItem\"  onMouseOver=\"subMenu(this,'on')\" onMouseOut=\"subMenu(this,'off')\"><a class=\"SubMenu\" href=\"/feedback.html\">Submit Story</a></td></tr>");
  document.write("  </table>");
  document.write("</div>");

  // --- Partners Sub Menu
  document.write("<div id=\"mnuPartners\" style=\"position:absolute; left:57px; top:109px; width:168px; z-index:2; visibility:hidden float:left;filter:alpha(opacity=90);-moz-opacity:0.9;opacity:0.9;\" onMouseOver=\"menu('mnuPartners','visible')\" > ");
  document.write("  <table width=\"100%\" border=\"0\" cellpadding=\"2\" cellspacing=\"1\" bgcolor=\"#59636C\">");
  document.write("    <tr><td height=20 bgcolor=\"#74808C\" class=\"PanelItem\"  onMouseOver=\"subMenu(this,'on')\" onMouseOut=\"subMenu(this,'off')\"><a class=\"SubMenu\" href=\"/reseller/login.asp\">Reseller Login</a></td></tr>");
  document.write("    <tr><td height=20 bgcolor=\"#74808C\" class=\"PanelItem\"  onMouseOver=\"subMenu(this,'on')\" onMouseOut=\"subMenu(this,'off')\"><a class=\"SubMenu\" href=\"/reseller/referralsignup.html\">Referral Sign Up</a></td></tr>");
  document.write("    <tr><td height=20 bgcolor=\"#74808C\" class=\"PanelItem\"  onMouseOver=\"subMenu(this,'on')\" onMouseOut=\"subMenu(this,'off')\"><a class=\"SubMenu\" href=\"https://www.apexpacific.com/reseller/dealersignup.html\">Dealer Sign Up</a></td></tr>");
  document.write("  </table>");
  document.write("</div>");

  resetMenu();
}

