jQuery(function($){
$('#mainSearch')
    .focus(function(e){ if (this.value == 'Search') this.value = '' })
    .blur(function(e){ if (this.value == '') this.value = 'Search' });
});
