  load();

  function load() 
  {
    img_sudy = new Image();
    img_sudy.src = "menu/m_SUDY.gif"
    img_sudyO = new Image();
    img_sudyO.src = "menu/m_SUDYower.gif"
//    img_Bsudy = new Image();
//    img_Bsudy.src = "sudy/MainSudyN.gif"
//    img_BsudyO = new Image();
//    img_BsudyO.src = "sudy/MainSudyS.gif"

    img_bazeny = new Image();
    img_bazeny.src = "menu/m_BAZENY.gif"
    img_bazenyO = new Image();
    img_bazenyO.src = "menu/m_BAZENYower.gif"
//    img_Bbazeny = new Image();
//    img_Bbazeny.src = "bazeny/MainBazenyN.gif"
//    img_BbazenyO = new Image();
//    img_BbazenyO.src = "bazeny/MainBazenyS.gif"

    img_pre_stav = new Image();
    img_pre_stav.src = "menu/m_PRE_STAV.gif"
    img_pre_stavO = new Image();
    img_pre_stavO.src = "menu/m_PRE_STAVower.gif"
//    img_Bpre_stav = new Image();
//    img_Bpre_stav.src = "staveb/MainStavebN.gif"
//    img_Bpre_stavO = new Image();
//    img_Bpre_stavO.src = "staveb/MainStavebS.gif"

    img_o_nas = new Image();
    img_o_nas.src = "menu/m_ONAS.gif"
    img_o_nasO = new Image();
    img_o_nasO.src = "menu/m_ONASower.gif"
//    img_Bo_nas = new Image();
//    img_Bo_nas.src = "profil/MainProfilN.gif"
//    img_Bo_nasO = new Image();
//    img_Bo_nasO.src = "profil/MainProfilS.gif"
  }

  function mouseInSudy() 
  {
    if (navigator.appVersion.charAt(0) >=3)
    {
      document["sudy"].src = img_sudyO.src;
//      document["Bsudy"].src = img_BsudyO.src;
    }
    window.setTimeout("window.status='Sudy'",1);
  }
  function mouseOutSudy() 
  {
    if (navigator.appVersion.charAt(0) >=3)
    {
      document["sudy"].src = img_sudy.src;
//      document["Bsudy"].src = img_Bsudy.src;
    }
  }

  function mouseInBazeny() 
  {
    if (navigator.appVersion.charAt(0) >=3)
    {
      document["bazeny"].src = img_bazenyO.src;
//      document["Bbazeny"].src = img_BbazenyO.src;
    }
    window.setTimeout("window.status='Bazény'",1);
  }
  function mouseOutBazeny() 
  {
    if (navigator.appVersion.charAt(0) >=3)
    {
      document["bazeny"].src = img_bazeny.src;
//      document["Bbazeny"].src = img_Bbazeny.src;
    }
  }

  function mouseInPreStav() 
  {
    if (navigator.appVersion.charAt(0) >=3)
    {
      document["pre_stav"].src = img_pre_stavO.src;
//      document["Bpre_stav"].src = img_Bpre_stavO.src;
    }
    window.setTimeout("window.status='Výrobky pre stavebníctvo'",1);
  }
  function mouseOutPreStav() 
  {
    if (navigator.appVersion.charAt(0) >=3)
    {
      document["pre_stav"].src = img_pre_stav.src;
//      document["Bpre_stav"].src = img_Bpre_stav.src;
    }
  }

  function mouseInONas() 
  {
    if (navigator.appVersion.charAt(0) >=3)
    {
      document["o_nas"].src = img_o_nasO.src;
//      document["Bo_nas"].src = img_Bo_nasO.src;
    }
    window.setTimeout("window.status='Profil firmy'",1);
  }
  function mouseOutONas() 
  {
    if (navigator.appVersion.charAt(0) >=3)
    {
      document["o_nas"].src = img_o_nas.src;
//      document["Bo_nas"].src = img_Bo_nas.src;
    }
  }

