document.observe("dom:loaded", function() {
 $$('form input[name="keywords"]').invoke('observe','click', function () {
   startValue=$(this).getValue();
   $(this).value = '';
 });
 $$('form input[name="keywords"]').invoke('observe','blur', function () {
   if ($(this).getValue() == '') {
     $(this).value = startValue;
   }
 });
});
