jQuery(document).ready(function() {
    //Show/hide default search text
    jQuery('#s').focus(function() {if (this.value == this.defaultValue) this.value = '';});
    jQuery('#s').blur(function() {if (this.value == '') this.value = (this.defaultValue ? this.defaultValue : '');});
});
