(function($){
    $.fn.helpbox = function(target){
       		$(this).bind("focus", function(){  
				$(target).css('background','#FFFF88');
			});  
			$(this).bind("blur", function(){  
				$(target).css('background','#FFFBCC');
			});  
			return($(this));
		};
})(jQuery);