// basic show and hide
 $(document).ready(function() {
  $('a#toggle').click(function() {
    $('div#subnavi').toggle(400);
    return false;
  });

});