jQuery(document).ready(function() {
  // call the function after it's been loaded
  
  jQuery('#query').focus(function()
  {
   //empty if it's default
   //alert('clicked in box');
   if(this.value == this.defaultValue){
    this.value = "";
   }  
  });
  
  jQuery('#query').blur(function()
  {
   //reset the default if it's empty
   if(this.value == ""){
     this.value = this.defaultValue;
   }  
  });

  jQuery('#footer_search .footer_query').focus(function()
  {
   //empty if it's default
   //alert('clicked in box');
   if(this.value == this.defaultValue){
    this.value = "";
   }  
  });
  
  jQuery('#footer_search .footer_query').blur(function()
  {
   //reset the default if it's empty
   if(this.value == ""){
     this.value = this.defaultValue;
   }  
  });
});
