<!--

  var webID = "CYZAPSITE";
  var host = "";
  var sslhost = "";
  var imgPathURL = "/cyzap_files/images/";
  var vertMenuOffsetY = 35;
  var vertMenuOffsetX = 4;
  var horizMenuOffsetY = 5;
  var horizMenuOffsetX = 149;

// Show Date

  var today = new Date()
  var time = today.getTime();
  var dayOfMonth = today.getDate();
  var dayOfWeek = today.getDay();
  var hour = today.getHours();
  var minutes = today.getMinutes();
  var monthOfYear = today.getMonth();
  var yearPast = today.getYear();
 
  var month
  if (monthOfYear == "0") {
     month = "January";
  }
  if (monthOfYear == "1") {
     month = "February";
  }
  if (monthOfYear == "2") {
     month = "March";
  }
  if (monthOfYear == "3") {
     month = "April";
  }
  if (monthOfYear == "4") {
     month = "May";
  }
  if (monthOfYear == "5") {
     month = "June";
  }
  if (monthOfYear == "6") {
     month = "July";
  }
  if (monthOfYear == "7") {
     month = "August";
  }
  if (monthOfYear == "8") {
     month = "September";
  }
  if (monthOfYear == "9") {
     month = "October";
  }
  if (monthOfYear == "10") {
     month = "November";
  }
  if (monthOfYear == "11") {
     month = "December";
  }

  var year
  year = yearPast
  if (year <= 200) {
    year = year + 1900;
  }

  function showGreeting () {
     document.write(month + " " + dayOfMonth +  ", " + year); 
  }

  function browserSupportsMenu(){
      var agt=navigator.userAgent.toLowerCase(); 
      var is_minor = parseFloat(navigator.appVersion); 
      var is_win   = ( (agt.indexOf("win")!=-1) || (agt.indexOf("16bit")!=-1) );
      if (document.all || document.getElementById) return true;
      if (document.layers && is_minor >= 4.7 && is_win) return true;
      return false;
  }

  function showVertMenu(event,tipName,mo,position,x,y){
    var tipTitle = '';  // For menus, tipTitle is always an empty string
    var tipAnchor = null; // This menu is not being positioned relative to an anchor <a name=...> tag so set it to null.
    var tipBody = mo; // mo is a text string created using a series of makeDZTextMenuItem function calls and goes as the tip body.

    if (!browserSupportsMenu()) return;
    showDZTip(event,tipName,tipTitle,tipBody,tipAnchor,'parentmenuitem',vertMenuOffsetX,vertMenuOffsetY);
  }

  function showMenu(event,tipName,mo,position,x,y){
    var tipTitle = '';  // For menus, tipTitle is always an empty string
    var tipAnchor = null; // This menu is not being positioned relative to an anchor <a name=...> tag so set it to null.
    var tipBody = mo; // mo is a text string created using a series of makeDZTextMenuItem function calls and goes as the tip body.

    if (!browserSupportsMenu()) return;

    if (position == 'flash') {
        showDZTip(event,tipName,tipTitle,tipBody,'flashAnchor','relative',x,y);
        return;
    }

    if (position == null) {
      /* showDZTip is defined in dzTip6.js */
      var windowWidth = window.document.body.clientWidth;
      var pTip = getDZTipElement(getDZTipElement(tipName).dzParentName);
      var  l = getDZOffset(pTip.currentMenuItem, "Left");
      var wd = parseInt(horizMenuOffsetX * 2) + parseInt(l);
      if (wd - windowWidth > 0) {
        showDZTip(event,tipName,tipTitle,tipBody,tipAnchor,'parentmenuitem',horizMenuOffsetX*-1,horizMenuOffsetY);
      } else {
        showDZTip(event,tipName,tipTitle,tipBody,tipAnchor,'parentmenuitem',horizMenuOffsetX,horizMenuOffsetY);
      }
    } else {
      showDZTip(event,tipName,tipTitle,tipBody,tipAnchor,'relative',0,34);
    }        
  }

// function makeDZTextMenuItem(className,itemText,link,tipMouseOverFunc,tipMouseOutFunc,imgAttributes,spacerHeight)
// function initDZTip(tipName, tipType, borderWidth, maxWidth, minWidth, parentName, className, showDelay, hideDelay, leftMargin, topMargin)

  var mm = initDZTip('MainMenu','hmenu',1,null,null,null,null,null,null,0,0);  //Menu
  mm.neverHide = true;
  mm.dzHideDelay=100;
  mm.dzShowDelay=0;

  initDZTip('TAB1','vmenu',0,null,null,'MainMenu',null,10,130,50,100);
  function showSubMenu_TAB1(event){
    var mo = "";
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/AboutUs/NEWS/>Whats New</a>',host + "/AboutUs/NEWS/",null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/AboutUs/PROFILE/>Company Profile</a>',host + "/AboutUs/PROFILE/",null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/AboutUs/VISION/>Mission / Vision</a>',host + "/AboutUs/VISION/",null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/AboutUs/FOUNDERS/>Co-founders</a>',host + "/AboutUs/FOUNDERS/",null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/AboutUs/CEO/>From the CEO\'s Desk</a>',host + "/AboutUs/CEO/",null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/AboutUs/PR/>Cyzap in the News</a>',host + "/AboutUs/PR/",null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/AboutUs/LOCATIONS/>Locations</a>',host + "/AboutUs/LOCATIONS/",null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/AboutUs/AWARD/>Cyzap Awards</a>',host + "/AboutUs/AWARD/",null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/AboutUs/EMPLOYMENT/>Employment</a>',host + "/AboutUs/EMPLOYMENT/",null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/AboutUs/CONTACTUS/>Contact Us</a>',host + "/AboutUs/CONTACTUS/",null,null,null,null);
    
    showVertMenu(event,'TAB1',mo);
  }

  initDZTip('TAB2','vmenu',0,null,null,'MainMenu',null,10,130,50,100);
  initDZTip('TAB2_ZAPMANAGER','vmenu',0,null,null,'TAB2',null,10,130,50,100);
  function showSubMenu_TAB2_ZAPMANAGER(event){
    var mo = "";
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/Products/ZAPMANAGER/OV/>Overview</a>',null,null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/Products/ZAPMANAGER/BENEFITS/>Benefits</a>',null,null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/Products/ZAPMANAGER/FEATURES/>Features</a>',null,null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/Products/ZAPMANAGER/TESTIMONIALS/>Testimonials</a>',null,null,null,null,null);
    
    showMenu(event,'TAB2_ZAPMANAGER',mo);
  }

  initDZTip('TAB2_ZAPSITE','vmenu',0,null,null,'TAB2',null,10,130,50,100);
  function showSubMenu_TAB2_ZAPSITE(event){
    var mo = "";
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/Products/ZAPSITE/OV/>Overview</a>',null,null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/Products/ZAPSITE/10SIGNS/>10 Signs You Need zapSite</a>',null,null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/Products/ZAPSITE/BENEFITS/>Benefits</a>',null,null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/Products/ZAPSITE/FEATURES/>Features</a>',null,null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/Products/ZAPSITE/TESTIMONIALS/>Testimonials</a>',null,null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/Products/ZAPSITE/CLIENTS/>Clients</a>',null,null,null,null,null);
    
    showMenu(event,'TAB2_ZAPSITE',mo);
  }

  function showSubMenu_TAB2(event){
    var mo = "";
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/Products/NEWS/>What\'s New</a>',host + "/Products/NEWS/",null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/Products/ZAPMANAGER/>zapManager</a>',host + "/Products/NEWS/","showSubMenu_TAB2_ZAPMANAGER(event)","hideDZTip('TAB2_ZAPMANAGER')","src=" + imgPathURL + "nav_arrow.gif border=0 hspace=3",null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/Products/ZAPSITE/>zapSite</a>',null,"showSubMenu_TAB2_ZAPSITE(event)","hideDZTip('TAB2_ZAPSITE')","src=" + imgPathURL + "nav_arrow.gif border=0 hspace=3",null);
    
    showVertMenu(event,'TAB2',mo);
  }

  initDZTip('TAB3','vmenu',0,null,null,'MainMenu',null,10,130,50,100);
  initDZTip('TAB3_WEB','vmenu',0,null,null,'TAB3',null,10,130,50,100);
  function showSubMenu_TAB3_WEB(event){
    var mo = "";
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/Services/WEB/WDS/>Web Design Services</a>',null,null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/Services/WEB/SP/>Site Planning</a>',null,null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/Services/WEB/LP/>Layout Planning</a>',null,null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/Services/WEB/CDP/>Content Development and Population</a>',null,null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/Services/WEB/REG/>Domain Registration and Renewal</a>',null,null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/Services/WEB/REF/>Testimonials</a>',null,null,null,null,null);
    
    showMenu(event,'TAB3_WEB',mo);
  }

  initDZTip('TAB3_IT','vmenu',0,null,null,'TAB3',null,10,130,50,100);
  function showSubMenu_TAB3_IT(event){
    var mo = "";
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/Services/IT/PROF/>Talent Profile</a>',null,null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/Services/IT/REF/>Testimonials</a>',null,null,null,null,null);
    
    showMenu(event,'TAB3_IT',mo);
  }

  initDZTip('TAB3_NETWORK','vmenu',0,null,null,'TAB3',null,10,130,50,100);
  function showSubMenu_TAB3_NETWORK(event){
    var mo = "";
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/Services/NETWORK/OV/>Overview</a>',null,null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/Services/NETWORK/REF/>Testimonials</a>',null,null,null,null,null);
    
    showMenu(event,'TAB3_NETWORK',mo);
  }

  initDZTip('TAB3_HOSTING','vmenu',0,null,null,'TAB3',null,10,130,50,100);
  function showSubMenu_TAB3_HOSTING(event){
    var mo = "";
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/Services/HOSTING/DC/>Data Center Overview</a>',null,null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/Services/HOSTING/ASP/>Application Hosting</a>',null,null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/Services/HOSTING/HELPDESK/>Helpdesk Services</a>',null,null,null,null,null);
    
    showMenu(event,'TAB3_HOSTING',mo);
  }

  function showSubMenu_TAB3(event){
    var mo = "";
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/Services/NEWS/>What\'s New</a>',host + "/Services/NEWS/",null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/Services/WEB/>Web Solutions</a>',host + "/Services/NEWS/","showSubMenu_TAB3_WEB(event)","hideDZTip('TAB3_WEB')","src=" + imgPathURL + "nav_arrow.gif border=0 hspace=3",null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/Services/IT/>IT Consulting</a>',null,"showSubMenu_TAB3_IT(event)","hideDZTip('TAB3_IT')","src=" + imgPathURL + "nav_arrow.gif border=0 hspace=3",null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/Services/NETWORK/>Networking / Security</a>',null,"showSubMenu_TAB3_NETWORK(event)","hideDZTip('TAB3_NETWORK')","src=" + imgPathURL + "nav_arrow.gif border=0 hspace=3",null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/Services/HOSTING/>Hosting</a>',null,"showSubMenu_TAB3_HOSTING(event)","hideDZTip('TAB3_HOSTING')","src=" + imgPathURL + "nav_arrow.gif border=0 hspace=3",null);
    
    showVertMenu(event,'TAB3',mo);
  }

  initDZTip('TAB4','vmenu',0,null,null,'MainMenu',null,10,130,50,100);
  initDZTip('TAB4_CORR','vmenu',0,null,null,'TAB4',null,10,130,50,100);
  function showSubMenu_TAB4_CORR(event){
    var mo = "";
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/IndustrySolutions/CORR/EZASSESS/>eZAssess</a>',null,null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' +  'http://soraf.cyzap.net target=_blank>SORAF</a>',null,null,null,null,null);
    
    showMenu(event,'TAB4_CORR',mo);
  }

  initDZTip('TAB4_CRED','vmenu',0,null,null,'TAB4',null,10,130,50,100);
  function showSubMenu_TAB4_CRED(event){
    var mo = "";
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/IndustrySolutions/CRED/ZAPCERTIFY/>zapCertify</a>',null,null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/IndustrySolutions/CRED/FEATURE/>Featured Clients</a>',null,null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/IndustrySolutions/CRED/CASESTUDY/>Case Study</a>',null,null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/IndustrySolutions/CRED/DOCS/>Related Documents</a>',null,null,null,null,null);
    
    showMenu(event,'TAB4_CRED',mo);
  }

  initDZTip('TAB4_REAL','vmenu',0,null,null,'TAB4',null,10,130,50,100);
  function showSubMenu_TAB4_REAL(event){
    var mo = "";
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/IndustrySolutions/REAL/ZAPPROP/>zapProperty</a>',null,null,null,null,null);
    
    showMenu(event,'TAB4_REAL',mo);
  }

  function showSubMenu_TAB4(event){
    var mo = "";
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/IndustrySolutions/NEWS/>What\'s New</a>',host + "/IndustrySolutions/NEWS/",null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/IndustrySolutions/CORR/>Community Corrections</a>',host + "/IndustrySolutions/NEWS/","showSubMenu_TAB4_CORR(event)","hideDZTip('TAB4_CORR')","src=" + imgPathURL + "nav_arrow.gif border=0 hspace=3",null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/IndustrySolutions/CRED/>Credentialing Organizations</a>',null,"showSubMenu_TAB4_CRED(event)","hideDZTip('TAB4_CRED')","src=" + imgPathURL + "nav_arrow.gif border=0 hspace=3",null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/IndustrySolutions/REAL/>Real Estate</a>',null,"showSubMenu_TAB4_REAL(event)","hideDZTip('TAB4_REAL')","src=" + imgPathURL + "nav_arrow.gif border=0 hspace=3",null);
    
    showVertMenu(event,'TAB4',mo);
  }

  initDZTip('TAB9','vmenu',0,null,null,'MainMenu',null,10,130,50,100);
  function showSubMenu_TAB9(event){
    var mo = "";
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/cyzaponline/login/>Login</a>',host + "/cyzaponline/login/",null,null,null,null);
    
    showVertMenu(event,'TAB9',mo);
  }

  initDZTip('LINK','vmenu',0,null,null,'MainMenu',null,10,130,50,100);
  initDZTip('LINK_LINKS','vmenu',0,null,null,'LINK',null,10,130,50,100);
  function showSubMenu_LINK_LINKS(event){
    var mo = "";
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/Resources/LINKS/SEARCH/>Search Engine Optimization</a>',null,null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/Resources/LINKS/APPS/>Recommended Applications</a>',null,null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/Resources/LINKS/DESIGN/>Website Design</a>',null,null,null,null,null);
    
    showMenu(event,'LINK_LINKS',mo);
  }

  function showSubMenu_LINK(event){
    var mo = "";
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/Resources/NEWSALL/>News</a>',host + "/Resources/NEWSALL/",null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/Services/WEB/REG/>Domain Registration and Renewal</a>',host + "/Services/WEB/REG/",null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/Resources/WDM/>Cyzap\'s Website Design Methodology</a>',host + "/Resources/WDM/",null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/Resources/AUTHOR/>Cyzap\'s Authors</a>',host + "/Resources/AUTHOR/",null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/Resources/AUP/>Acceptable Use Policy</a>',host + "/Resources/AUP/",null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/Resources/LINKS/>Useful Links</a>',host + "/Resources/AUP/","showSubMenu_LINK_LINKS(event)","hideDZTip('LINK_LINKS')","src=" + imgPathURL + "nav_arrow.gif border=0 hspace=3",null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/Resources/SHAREDVIEW/>Participate in a Sharedview Session</a>',host + "/Resources/SHAREDVIEW/",null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/Resources/PAYMENT/>Make a Payment to Cyzap</a>',host + "/Resources/PAYMENT/",null,null,null,null);
    
    showVertMenu(event,'LINK',mo);
  }


  function showMainMenu(event){
    if (!browserSupportsMenu()) return;
    var mo = "";
    mo = mo + makeDZHorizImageMenuItem('ImgMainMenu',imgPathURL + '_down.gif',imgPathURL + '_up.gif',98,19,host + '//',"showSubMenu_TAB1(event)","hideDZTip('TAB1')");
    mo = mo + makeDZHorizImageMenuItem('ImgMainMenu',imgPathURL + '_down.gif',imgPathURL + '_up.gif',98,19,host + '//',"showSubMenu_TAB2(event)","hideDZTip('TAB2')");
    mo = mo + makeDZHorizImageMenuItem('ImgMainMenu',imgPathURL + '_down.gif',imgPathURL + '_up.gif',98,19,host + '//',"showSubMenu_TAB3(event)","hideDZTip('TAB3')");
    mo = mo + makeDZHorizImageMenuItem('ImgMainMenu',imgPathURL + '_down.gif',imgPathURL + '_up.gif',98,19,host + '//',"showSubMenu_TAB4(event)","hideDZTip('TAB4')");
    mo = mo + makeDZHorizImageMenuItem('ImgMainMenu',imgPathURL + '_down.gif',imgPathURL + '_up.gif',98,19,host + '//',"showSubMenu_TAB9(event)","hideDZTip('TAB9')");
    mo = mo + makeDZHorizImageMenuItem('ImgMainMenu',imgPathURL + '_down.gif',imgPathURL + '_up.gif',98,19,host + '//',"showSubMenu_LINK(event)","hideDZTip('LINK')");
    
    showDZTip(event,'MainMenu','',mo,'','absolute',43,103);
  }

function showMainMenu(event){
    if (!browserSupportsMenu()) return;
    var mo = "";
    mo = mo + makeDZHorizImageMenuItem('ImgMainMenu',imgPathURL + 'home_down.gif',imgPathURL + 'home_up.gif',104,38,host + '/',null,null);
    mo = mo + makeDZHorizImageMenuItem('ImgMainMenu',imgPathURL + 'AboutUs_down.gif',imgPathURL + 'AboutUs_up.gif',97,38,host + '/AboutUs/',"showSubMenu_TAB1(event)","hideDZTip('TAB1')");
    mo = mo + makeDZHorizImageMenuItem('ImgMainMenu',imgPathURL + 'Products_down.gif',imgPathURL + 'Products_up.gif',99,38,host + '/Products/',"showSubMenu_TAB2(event)","hideDZTip('TAB2')");
    mo = mo + makeDZHorizImageMenuItem('ImgMainMenu',imgPathURL + 'Serv_down.gif',imgPathURL + 'Serv_down.gif.gif',16,38,host + '/Services/',null,null);
    mo = mo + makeDZHorizImageMenuItem('ImgMainMenu',imgPathURL + 'Services_down.gif',imgPathURL + 'Services_up.gif',74,38,host + '/Services/',"showSubMenu_TAB3(event)","hideDZTip('TAB3')");
    mo = mo + makeDZHorizImageMenuItem('ImgMainMenu',imgPathURL + 'IndustrySolutions_down.gif',imgPathURL + 'IndustrySolutions_up.gif',162,38,host + '/IndustrySolutions/',"showSubMenu_TAB4(event)","hideDZTip('TAB4')");
    mo = mo + makeDZHorizImageMenuItem('ImgMainMenu',imgPathURL + 'Resources_down.gif',imgPathURL + 'Resources_up.gif',108,38,host + '/Resources/',"showSubMenu_LINK(event)","hideDZTip('LINK')");
    mo = mo + makeDZHorizImageMenuItem('ImgMainMenu',imgPathURL + 'news_down.gif',imgPathURL + 'news_up.gif',114,38,host + '/OnlineServices/',"showSubMenu_TAB9(event)","hideDZTip('TAB9')");
    
    showDZTip(event,'MainMenu','',mo,'nav','relative',0,0); 
  }

//-->