/* Copyright (c) 2010 Brandon Aaron (http://brandonaaron.net)
 * Licensed under the MIT License (LICENSE.txt).
 *
 * Version 1.0
 *
 * Based on Making Compact Forms More Accessible by Mike Brittain (http://alistapart.com/articles/makingcompactformsmoreaccessible)
 */
(function(a){a.fn.overlabel=function(){this.each(function(){var b=a(this),c=a("#"+b.attr("for"));b.addClass("overlabel").bind("click",function(d){c.focus()});c.bind("focus blur",function(d){b.css("display",(d.type=="blur"&&!c.val()?"":"none"))}).trigger("blur")})}})(jQuery);
