<!--

  var webID = "fceomaha";
  var host = "";
  var sslhost = "";
  var imgPathURL = "/fceomaha_files/images/";
  var vertMenuOffsetY = 20;
  var vertMenuOffsetX = 1;
  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 */
      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('APP','vmenu',0,null,null,'MainMenu',null,10,130,50,100);
  function showSubMenu_APP(event){
    var mo = "";
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '//LOAN/>Loan Application</a>',host + "//LOAN/",null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '//ESTATEMENT/>E-Statement Application</a>',host + "//ESTATEMENT/",null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '//DEBIT/>Debit Card Application</a>',host + "//DEBIT/",null,null,null,null);
    
    showVertMenu(event,'APP',mo);
  }

  initDZTip('NEWS','vmenu',0,null,null,'MainMenu',null,10,130,50,100);
  function showSubMenu_NEWS(event){
    var mo = "";
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/NEWS/GEN/>General News</a>',host + "/NEWS/GEN/",null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/NEWS/WELCOME/>Welcome</a>',host + "/NEWS/WELCOME/",null,null,null,null);
    
    showVertMenu(event,'NEWS',mo);
  }

  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 + '/Information/GRP/>Groups We Serve</a>',host + "/Information/GRP/",null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/Information/MBR/>Become a Member</a>',host + "/Information/MBR/",null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/Information/STAFF/>Meet Our Staff</a>',host + "/Information/STAFF/",null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/Information/VOL/>Volunteer Officials</a>',host + "/Information/VOL/",null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/Information/INT/>In Touch Newsletter</a>',host + "/Information/INT/",null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/Information/PRIV/>Privacy Statements</a>',host + "/Information/PRIV/",null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/Information/FEES/>Fees</a>',host + "/Information/FEES/",null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/Information/LINKS/>Links</a>',host + "/Information/LINKS/",null,null,null,null);
    
    showVertMenu(event,'TAB1',mo);
  }

  initDZTip('TAB2','vmenu',0,null,null,'MainMenu',null,10,130,50,100);
  initDZTip('TAB2_ELEC','vmenu',0,null,null,'TAB2',null,10,130,50,100);
  function showSubMenu_TAB2_ELEC(event){
    var mo = "";
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/Services/ELEC/WEBPB/>Web PB</a>',host + "/Services/ELEC/WEBPB/",null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/Services/ELEC/EST/>E-Statements</a>',host + "/Services/ELEC/EST/",null,null,null,null);
    
    showMenu(event,'TAB2_ELEC',mo);
  }

  initDZTip('TAB2_VEH','vmenu',0,null,null,'TAB2',null,10,130,50,100);
  function showSubMenu_TAB2_VEH(event){
    var mo = "";
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/Services/VEH/EXT/>Extended Service Plan</a>',host + "/Services/VEH/EXT/",null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/Services/VEH/BUY/>Buyer Assistance</a>',host + "/Services/VEH/BUY/",null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/Services/VEH/TITLE/>Title History</a>',host + "/Services/VEH/TITLE/",null,null,null,null);
    
    showMenu(event,'TAB2_VEH',mo);
  }

  initDZTip('TAB2_INS','vmenu',0,null,null,'TAB2',null,10,130,50,100);
  function showSubMenu_TAB2_INS(event){
    var mo = "";
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/Services/INS/LIF/>Credit Life & Disability</a>',host + "/Services/INS/LIF/",null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/Services/INS/MTG/>Mortgage Insurance</a>',host + "/Services/INS/MTG/",null,null,null,null);
    
    showMenu(event,'TAB2_INS',mo);
  }

  initDZTip('TAB2_DEB','vmenu',0,null,null,'TAB2',null,10,130,50,100);
  function showSubMenu_TAB2_DEB(event){
    var mo = "";
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/Services/DEB/INFO/>Debit Card Info</a>',host + "/Services/DEB/INFO/",null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/fceomaha_files/applications/debit_card/>Debit Card App</a>',host + "/Services/DEB/INFO/",null,null,null,null);
    
    showMenu(event,'TAB2_DEB',mo);
  }

  function showSubMenu_TAB2(event){
    var mo = "";
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/Services/ELEC/>Electronic Banking</a>',host + "/Services/ELEC/","showSubMenu_TAB2_ELEC(event)","hideDZTip('TAB2_ELEC')","src=" + imgPathURL + "nav_arrow.gif border=0 hspace=3",null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/Services/VEH/>Vehicle Services</a>',host + "/Services/VEH/","showSubMenu_TAB2_VEH(event)","hideDZTip('TAB2_VEH')","src=" + imgPathURL + "nav_arrow.gif border=0 hspace=3",null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/Services/INS/>Insurance</a>',host + "/Services/INS/","showSubMenu_TAB2_INS(event)","hideDZTip('TAB2_INS')","src=" + imgPathURL + "nav_arrow.gif border=0 hspace=3",null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/Services/DEB/>Debit Card</a>',host + "/Services/DEB/","showSubMenu_TAB2_DEB(event)","hideDZTip('TAB2_DEB')","src=" + imgPathURL + "nav_arrow.gif border=0 hspace=3",null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/Services/WIRE/>Wire Transfers</a>',host + "/Services/WIRE/",null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/Services/EFT/>EFT Disclosures</a>',host + "/Services/EFT/",null,null,null,null);
    
    showVertMenu(event,'TAB2',mo);
  }

  initDZTip('TAB3','vmenu',0,null,null,'MainMenu',null,10,130,50,100);
  initDZTip('TAB3_CKP','vmenu',0,null,null,'TAB3',null,10,130,50,100);
  function showSubMenu_TAB3_CKP(event){
    var mo = "";
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/Savings/CKP/SH/>Share Draft Checking</a>',host + "/Savings/CKP/SH/",null,null,null,null);
    
    showMenu(event,'TAB3_CKP',mo);
  }

  initDZTip('TAB3_SVP','vmenu',0,null,null,'TAB3',null,10,130,50,100);
  function showSubMenu_TAB3_SVP(event){
    var mo = "";
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/Savings/SVP/REG/>Regular Savings</a>',host + "/Savings/SVP/REG/",null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/Savings/SVP/YTH/>Youth Savings</a>',host + "/Savings/SVP/YTH/",null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/Savings/SVP/INT/>Interest</a>',host + "/Savings/SVP/INT/",null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/Savings/SVP/SAV/>Savings Access</a>',host + "/Savings/SVP/SAV/",null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/Savings/SVP/DEP/>Deposit Insurance</a>',host + "/Savings/SVP/DEP/",null,null,null,null);
    
    showMenu(event,'TAB3_SVP',mo);
  }

  function showSubMenu_TAB3(event){
    var mo = "";
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/Savings/SAV/>Savings Rates</a>',host + "/Savings/SAV/",null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/Savings/IRA/>IRA Rates</a>',host + "/Savings/IRA/",null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/Savings/TIME/>Time Certificate Rates</a>',host + "/Savings/TIME/",null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/Savings/CKR/>Checking Rates</a>',host + "/Savings/CKR/",null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/Savings/CKP/>Checking Products</a>',host + "/Savings/CKP/","showSubMenu_TAB3_CKP(event)","hideDZTip('TAB3_CKP')","src=" + imgPathURL + "nav_arrow.gif border=0 hspace=3",null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/Savings/SVP/>Savings Products</a>',host + "/Savings/SVP/","showSubMenu_TAB3_SVP(event)","hideDZTip('TAB3_SVP')","src=" + imgPathURL + "nav_arrow.gif border=0 hspace=3",null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/Savings/SVD/>Savings Disclosures</a>',host + "/Savings/SVD/",null,null,null,null);
    
    showVertMenu(event,'TAB3',mo);
  }

  initDZTip('TAB4','vmenu',0,null,null,'MainMenu',null,10,130,50,100);
  initDZTip('TAB4_VEH','vmenu',0,null,null,'TAB4',null,10,130,50,100);
  function showSubMenu_TAB4_VEH(event){
    var mo = "";
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/Loan_Rates/VEH/RAT/>Vehicle Loan Rates</a>',host + "/Loan_Rates/VEH/RAT/",null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/Loan_Rates/VEH/LEAS/>Vehicle Leasing</a>',host + "/Loan_Rates/VEH/LEAS/",null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/Loan_Rates/VEH/BOAT/>Boat & RV Loan Rates</a>',host + "/Loan_Rates/VEH/BOAT/",null,null,null,null);
    
    showMenu(event,'TAB4_VEH',mo);
  }

  function showSubMenu_TAB4(event){
    var mo = "";
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/Loan_Rates/VEH/>Vehicle Loans</a>',host + "/Loan_Rates/VEH/","showSubMenu_TAB4_VEH(event)","hideDZTip('TAB4_VEH')","src=" + imgPathURL + "nav_arrow.gif border=0 hspace=3",null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/Loan_Rates/1MRT/>1st Mortgage Loan</a>',host + "/Loan_Rates/1MRT/",null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/Loan_Rates/2MRT/>2nd Mortgage Loan</a>',host + "/Loan_Rates/2MRT/",null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/Loan_Rates/SAV/>Savings Secured Rates</a>',host + "/Loan_Rates/SAV/",null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/Loan_Rates/SIG/>Signature Loan Rates</a>',host + "/Loan_Rates/SIG/",null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/Loan_Rates/OTH/>Other Secured Loan Rates</a>',host + "/Loan_Rates/OTH/",null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/Loan_Rates/EXP/>Express Loans</a>',host + "/Loan_Rates/EXP/",null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/Loan_Rates/DIS/>Disclosures</a>',host + "/Loan_Rates/DIS/",null,null,null,null);
    
    showVertMenu(event,'TAB4',mo);
  }

  initDZTip('TAB5','vmenu',0,null,null,'MainMenu',null,10,130,50,100);
  initDZTip('TAB5_1MRT','vmenu',0,null,null,'TAB5',null,10,130,50,100);
  function showSubMenu_TAB5_1MRT(event){
    var mo = "";
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/Loan_Info/1MRT/FIX/>Fixed Rate</a>',host + "/Loan_Info/1MRT/FIX/",null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/Loan_Info/1MRT/VAR/>Variable Rate</a>',host + "/Loan_Info/1MRT/VAR/",null,null,null,null);
    
    showMenu(event,'TAB5_1MRT',mo);
  }

  function showSubMenu_TAB5(event){
    var mo = "";
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/Loan_Info/SIG/>Signature Loans</a>',host + "/Loan_Info/SIG/",null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/Loan_Info/SAV/>Savings Secured</a>',host + "/Loan_Info/SAV/",null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/Loan_Info/1MRT/>1st Mortgage</a>',host + "/Loan_Info/1MRT/","showSubMenu_TAB5_1MRT(event)","hideDZTip('TAB5_1MRT')","src=" + imgPathURL + "nav_arrow.gif border=0 hspace=3",null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/Loan_Info/2MRT/>2nd Mortgage</a>',host + "/Loan_Info/2MRT/",null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/Loan_Info/VAR/>Variable Rate</a>',host + "/Loan_Info/VAR/",null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/Loan_Info/FIX/>Fixed Rate</a>',host + "/Loan_Info/FIX/",null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/Loan_Info/VEH/>Vehicle Loans</a>',host + "/Loan_Info/VEH/",null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/Loan_Info/VEHLEASE/>Vehicle Leasing</a>',host + "/Loan_Info/VEHLEASE/",null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/Loan_Info/BOAT/>Boats & RVs</a>',host + "/Loan_Info/BOAT/",null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/Loan_Info/HOW/>How it Works</a>',host + "/Loan_Info/HOW/",null,null,null,null);
    
    showVertMenu(event,'TAB5',mo);
  }

  initDZTip('TAB6','vmenu',0,null,null,'MainMenu',null,10,130,50,100);
  function showSubMenu_TAB6(event){
    var mo = "";
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/Applications/WELCOME/>Overview</a>',host + "/Applications/WELCOME/",null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/fceomaha_files/applications/member_app/>Membership</a>',host + "/fceomaha_files/applications/member_app/",null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/fceomaha_files/applications/loan_app/>Loan</a>',host + "/fceomaha_files/applications/loan_app/",null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/fceomaha_files/applications/debit_card/>Debit Card</a>',host + "/fceomaha_files/applications/debit_card/",null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/fceomaha_files/applications/sign_up/>Web PB</a>',host + "/fceomaha_files/applications/sign_up/",null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/fceomaha_files/applications/consent/>E-Statement</a>',host + "/fceomaha_files/applications/consent/",null,null,null,null);
    mo = mo + makeDZTextMenuItem('MainMenu','<a href=' + host + '/Applications/MRT/>Mortgage Loan</a>',host + "/Applications/MRT/",null,null,null,null);
    
    showVertMenu(event,'TAB6',mo);
  }


  function showMainMenu(event){
    if (!browserSupportsMenu()) return;
    var mo = "";
    mo = mo + makeDZHorizImageMenuItem('ImgMainMenu',imgPathURL + '_down.gif',imgPathURL + '_up.gif',98,19,host + '//',"showSubMenu_APP(event)","hideDZTip('APP')");
    mo = mo + makeDZHorizImageMenuItem('ImgMainMenu',imgPathURL + 'NEWS_down.gif',imgPathURL + 'NEWS_up.gif',98,19,host + '/NEWS/',"showSubMenu_NEWS(event)","hideDZTip('NEWS')");
    mo = mo + makeDZHorizImageMenuItem('ImgMainMenu',imgPathURL + 'Information_down.gif',imgPathURL + 'Information_up.gif',98,19,host + '/Information/',"showSubMenu_TAB1(event)","hideDZTip('TAB1')");
    mo = mo + makeDZHorizImageMenuItem('ImgMainMenu',imgPathURL + 'Services_down.gif',imgPathURL + 'Services_up.gif',98,19,host + '/Services/',"showSubMenu_TAB2(event)","hideDZTip('TAB2')");
    mo = mo + makeDZHorizImageMenuItem('ImgMainMenu',imgPathURL + 'Savings_down.gif',imgPathURL + 'Savings_up.gif',98,19,host + '/Savings/',"showSubMenu_TAB3(event)","hideDZTip('TAB3')");
    mo = mo + makeDZHorizImageMenuItem('ImgMainMenu',imgPathURL + 'Loan_Rates_down.gif',imgPathURL + 'Loan_Rates_up.gif',98,19,host + '/Loan_Rates/',"showSubMenu_TAB4(event)","hideDZTip('TAB4')");
    mo = mo + makeDZHorizImageMenuItem('ImgMainMenu',imgPathURL + 'Loan_Info_down.gif',imgPathURL + 'Loan_Info_up.gif',98,19,host + '/Loan_Info/',"showSubMenu_TAB5(event)","hideDZTip('TAB5')");
    mo = mo + makeDZHorizImageMenuItem('ImgMainMenu',imgPathURL + 'Applications_down.gif',imgPathURL + 'Applications_up.gif',98,19,host + '/Applications/',"showSubMenu_TAB6(event)","hideDZTip('TAB6')");
    
    showDZTip(event,'MainMenu','',mo,'','absolute',43,103);
  }

//-->