jQuery.fn.fillIn = function(txt) {
	return this.each(function(){
		
		if ($(this).val() != txt && $(this).val() != ''){
			$(this).removeClass("fillin");
		} else {
			$(this).addClass("fillin");
		}
		
		$(this).focus(function(){
			if ($(this).val() == txt) {
				$(this).val("");
				$(this).removeClass("fillin");
			}
		});
		
		$(this).blur(function(){
			if ($(this).val() == ""){
				$(this).val(txt);
				$(this).addClass("fillin");
			}
		});
	});
};

