function show_comments() {
  $("Comment").show();
}

Event.observe(window, 'load', function() {
  $$('#Search input').each(function(element) {
    Event.observe(element, 'click', function() {
      if (this.value = "Artikelsuche") {
        this.value = '';
      }
    });
  });
});

