$(document).ready(function() {
  $('#mainmenu .grid_1')
    .each(function() {
      var $this = $(this),
          $a = $this.find('a');
      if ($a.length > 0) {
        $(this).click(function() {
          document.location.href = $a.attr('href');
        });
      }
    });
  setTimeout(function() { //This timeout needs to happen because it otherwise breaks the autocomplete field
    $('.genusQueryField').focus();
  }, 50);
});
