/*document.observe("contentloaded", function(){*/
      //var startValue='';
      $$('form input[name="search"]').invoke('observe','click', function () {
        startValue=$(this).getValue();
        $(this).value = '';
      });
     
      $$('form input[name="search"]').invoke('observe','blur', function () {
      if ($(this).getValue() == '') {
				$(this).value = startValue;
			}
      });
/*});*/

