$(function(){
   // wenn kein Wert in Suchfeldern eingegeben ist
   // soll ein platzhalterstring eingetragen werden. 
   var placeholder = 'Schlagwort'; 
   $('#schlagwortinput').focus(function(){ 
      if(this.value == placeholder){ 
         this.value = ''; 
      } 
   }    
   ).blur(function(){
      if(this.value == ''){
         //this.value = placeholder; 
    	  this.value = '';
      }
   }); 


   $('div.closeable .closebutton')
       
      .css('cursor', 'pointer') 
      .parent().children('div').hide().end().end()
      .toggle(
         // show contents 
         function(){ 
            $(this)
               .children('img').attr('src', 'img/closeable_pfeil_unten.gif').end()
               .parent().children('div').show('fast'); 
         }, 
         // hide contents 
         function(){
            $(this)
                .children('img').attr('src', 'img/closeable_pfeil.gif').end()
                .parent().children('div').hide('fast'); 
         } 
      );
   $('div.closeable_on .closebutton')
   
   .css('cursor', 'pointer') 
   .parent().children('div').show().end().end()
   .toggle(
      // hide contents 
      function(){ 
         $(this)
            .children('img').attr('src', 'img/closeable_pfeil.gif').end()
            .parent().children('div').hide('fast'); 
      }, 
      // show contents 
      function(){
         $(this)
             .children('img').attr('src', 'img/closeable_pfeil_unten.gif').end()
             .parent().children('div').show('fast'); 
      } 
   );
});

