// JavaScript Document
<!--
  var gY=0;
  gKtoryPrzycisk=" "

  function przelacz_menu() {
    /* Uwaga: bezp. po załadowaniu div"paleta_menu" nie ma przypisanego stylu na stałe */
    /* doiero pierwsze wywołanie tej funkcji nadaje styl "visibility"                  */
    if (document.getElementById('paleta_menu').style.visibility != "visible")
  		document.getElementById('paleta_menu').style.visibility="visible"
  	else
  	 document.getElementById('paleta_menu').style.visibility="hidden"
  }
  function pokaz_menu(xPrzycisk,e) {
    var gMenu=document.getElementById('paleta_menu')
    e=e||event
    /* Uwaga: bezp. po załadowaniu div"paleta_menu" nie ma przypisanego stylu na stałe */
    /* doiero pierwsze wywołanie tej funkcji nadaje styl "visibility"                  */
    if (gMenu.style.visibility != "visible")
      gMenu.style.visibility="visible"
    if (xPrzycisk!=gKtoryPrzycisk)
    {
    	if (xPrzycisk=="gora")
  	     gMenu.style.top=44
  	   else
  	     {
  	     // nav ? nav : ie
  	     gMenu.style.top=e.pageY?e.pageY-432:event.clientY-440+document.body.scrollTop
         }
       gKtoryPrzycisk=xPrzycisk
    }
  }
  function zgas_menu() {
    /* Uwaga: bezp. po załadowaniu div"paleta_menu" nie ma przypisanego stylu na stałe */
    /* doiero pierwsze wywołanie tej funkcji nadaje styl "visibility"                  */
    if (document.getElementById('paleta_menu').style.visibility != "hidden")
  		document.getElementById('paleta_menu').style.visibility="hidden"
  	gKtoryPrzycisk=""
  }
//-->
