// JavaScript Document

function  change_status(menu) {
    var co;
    co = document.getElementById(menu).style

			if (co.display=='block')
      {
        co.display = 'none';
			}
			else {
				co.display = 'block';
			}
}

// funkce pro zmenu stranky v navigaci
function gotonewpage(what) {

  value = what.options[what.selectedIndex].value;

  if (value == "") return;

  window.location.href = value;

}

$(document).ready(function () {
    /*$('ul.menu1 li.hasSubmenu ul').hide();
    $('ul.menu1 li.hasSubmenu').click(function() {
      $(this).children('ul').toggle();
      return false;
    });
    $('ul.menu1 li.hasSubmenu > a').click(function () {
      return true;
    });*/
});
