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