$(document).ready(function(){
	$("form#searchform input:text").blur(function(){
	    if ($(this).val() == '') {
	        $(this).css("background", "#ffffff url('images/txt-search.gif') 5px 5px no-repeat");
	    }
	}).focus(function(){
	    $(this).css("background", "#ffffff none repeat scroll 0 0");
	}).blur();
});
