// Enter a default Search value and then clear it when on focus in the Google Search Block box...
$(document).ready(function () {
    $(".ews_gsb_searchbox").attr("value", "Search");
    $(".ews_gsb_searchbox").focus(function () {
        $(this).attr("value", "");
    })
});
