jQuery(function( $ ){
$("#top-slider").home_slider();
$("#header-search-form input.text").bind("focus",
    function(){
        $(this).css("background-image","none");
    }
);
$("#header-search-form input.text").bind("blur",
    function(){
        if(jQuery.trim($(this).val()).length==0){
            $(this).css("background-image","url(img/google-search.png)");
        }
    }
);
});