(function($){
  $.fn.overlabel = function() {
    this.each(function(){
  
      var label = $(this);
      var id = this.htmlFor || label.attr('for') || "NO-ID";

	    label.addClass("overlabel-apply");
  
      $("#"+id)
		    .focus(function(){ label.css("text-indent", "-2000px"); })
		    .blur(function(){ this.value || label.css("text-indent", "0px"); })

    });
  }
})(jQuery);
