jQuery(document).ready(function($) {
    $('#search_q').focus(function() {
        if ($(this).val() == "Search site") { $(this).val(""); }
    }).blur(function() {
        if ($(this).val() == "") { $(this).val("Search site"); }
    });
});
