// from: http://www.johnandcailin.com/blog/john/using-jquery-place-prompt-text-your-exposed-drupal-filters

function inlineFieldLabel (label, inputid)
{
  var fieldLabel = label;         // string to put in your text input
  var textInput = $(inputid)  // your text input field
 

  /* add the field label css class to the form field and set the value */
	if(textInput.val() == "" || textInput.val() == fieldLabel){
	  textInput.addClass("unset").val(fieldLabel);
	}

  /* remove the placeholder string when field gets focus */
  textInput.focus(function()
   {
      if(this.value == fieldLabel )
      {
         $(this).removeClass("unset").val("");
      };
   });

  /* add the field label string when field looses focus */
  textInput.blur(function()
   {
      if(this.value == "")
      {
         $(this).addClass("unset").val(fieldLabel );
      };
   });

}