(function($){
$.fn.tbHinter = function(options) {

var defaults = {
text: 'Enter a text ...',
hclass: 'tbHinter',
};

var options = $.extend(defaults, options);

return this.each(function(){

$(this).focus(function(){
$(this).parent().find('.'+options.hclass).remove()
});

$(this).blur(function(){
if($(this).val() == ''){
$(this).parent().prepend("<span class='"+options.hclass+"'>"+options.text+"</span>")

}
});

$(this).blur();

});
};
})(jQuery);
