$(function() {
  
  if ($('#suchformular') && $('#suchbutton'))
  {
    $('#suchbutton').click(function(e) {
      
      $('#suchformular').stop(true, true).fadeToggle(200);
      
    });
  }

});



