/**
 * @author 
 */
$(document).ready(function(){
  //--remove Search text on focus of Search box
  $('#edit-search-theme-form-1').focus(function(){
      //--get value
      var defaultText = $(this).val();
      
      //--remove text
      $(this).val('');
      
      //--on leave, get user input, if emty set back to default
      $("input").blur( function () {
        var userInput = $(this).val();
          if (userInput == ''){
            $(this).val(defaultText);
          }
      });

  });
});  
