// When the DOM is ready...
$(document).ready(function(){
    // Update the form action to point to the SNIA site.
    $(".search_form").attr({action: "http://www.snia.org/search"});
    // Update the #cof input value attribute
    $(".cof").attr({value: 'FORID:11'});

    // Toggle background image onclick
    // If there is data in the field, do not show the background image
    // If there is no data in the field, show the background image
    $("form.search_form input.text").click(function(){
        if($(this).val() == '') {
            $(this).css("background-image","none");            
        }
    });
    $("form.search_form input.text").blur(function(){
        if($(this).val() == '') {
            $(this).css("background-image","url(/images/google_custom_search_watermark.gif)");  
        }
    });
});