$(document).ready(function() 
{
    $("#search_textbox").focus(function() {

        $(this).filter(function() {
            return $(this).val() == "" || $(this).val() == "keyword or product #"
        }).removeClass("watermark").val("");
    }).blur(function() {
        $(this).filter(function() {
           return $(this).val() == "";
        }).addClass("watermark").val("keyword or product #");
    });
    
    $("#surveytext").focus(function() {
        //UNREACHABLE as of 2011-05-12
        //no element with id="surveytext"
        $(this).select();
    });
});
