// JavaScript Document

$(document).ready(function(){
  $("#s").val("Suchbegriff eingeben ...");
    
  $("#s").focus(function(){
    if($("#s").val() == "Suchbegriff eingeben ..."){
      $("#s").val("");
    }
  });
  
  //$("#comment_overview").hide();
  if($("#comment_overview").css("display") == "none"){
    $("#comment_button").html("anzeigen");
  }

});


function lp_drop_down(did, bid){
  if($("#"+did).css("display") == "none"){
    $("#"+bid).html("ausblenden");
  }else{
    $("#"+bid).html("anzeigen");
  }
 
  $("#"+did).slideToggle();


}
