jQuery(function() {
    jQuery('.prefill').focus(function() {
        if (jQuery(this).val().toLowerCase() == 'search by keyword') {
            jQuery(this).val('');
        }
    });
    
    jQuery('.prefill').blur(function() {
        if (jQuery(this).val() == '') {
            jQuery(this).val('Search by Keyword');
        }
    });
});
