/*------------------------------------------------------------------------------

  tyriz.de Javascript Headfile
    by Martin Walz

------------------------------------------------------------------------------*/

$(document).ready( function() {
  $("li.nav1").mouseenter(function () { $(this).children('div').show(); });
  $("li.nav1").mouseleave(function () { $(this).children('div').hide(); });
  $("li.nav1").children('div').hide();

  Hyphenator.config({ minwordlength : 4 });
  Hyphenator.run();
  
  if($.browser.msie) {
  } else {
  }
});

