     $(document).ready(function() {

	$("#search-terms").focus(
	 function()
	 {
	  $(this).css("background-color","#fdf6e8");
	  $(this).css("border-color","#666");
	  $(this).css("color","#000");
	  // set to empty if it's the default
	  if(this.value == this.defaultValue)
	  {
	   this.value = "";
	  }
	 }
	)

	$("#search-terms").blur(
	 function()
	 {
	  $(this).css("background-color","#FFFFFF");
	  $(this).css("border-color","#d9d9d9");
	  $(this).css("color","#ccc");
	  // reset to default if it's empty
	  if(this.value == "")
	  {
	   this.value = this.defaultValue;
	  }
	 }
	)

    });