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