// after loading
$(document).ready(function(){

  // najde tlacitka submit, simuluje hover pro MSIE
  $("form").find("input[type=submit]").hover(
      function() {
          $(this).addClass("buttonHover");
      },
      function() {
          $(this).removeClass("buttonHover");
		  }
  );

  $('a.external, a.urlextern').click(
    function(){
      window.open(this.href);
      return false;
    }
  );
    
});
