(function($){
$.fn.overlabel = function() {
    this.each(function(){
        var label = $(this);
	$("#"+(this.htmlFor || label.attr('for') || "ID-NOT-FOUND"))
		.focus(function(){ label.css("text-indent", "-1000px"); })
		.blur(function(){ this.value || label.css("text-indent", "0px"); })
		.trigger("focus").trigger("blur")
		.length && 
			label.addClass("overlabel");
    });
}
})(jQuery);

$(document).ready(function() {
    $("label").overlabel();
});