(function($){$.fn.formstyle=function(c){var d={labelInside:false,wrap:'p',activeBg:false,activeBorder:false,newBorder:'#ffffff',fadeThis:'#ffffe2',origFade:'#ffffff',float:false,passwordText:false};var e=$.extend(d,c);this.children(""+e.wrap+"").children("input[type='submit']").addClass("btn");this.children(""+e.wrap+"").children("input[type='password']").addClass("password").attr("autocomplete","off");this.children(""+e.wrap+"").children("input[type='text']").addClass("text").attr("autocomplete","off");this.children(""+e.wrap+"").children("input[type='radio']").addClass("radio");this.children(""+e.wrap+"").children("input[type='checkbox']").addClass("checkbox");if(e.float==false){this.children(""+e.wrap+"").addClass("clearfix")}else{this.children(""+e.wrap+"").addClass("form-float-elements");this.children(""+e.wrap+":has(.btn)").css({marginRight:0})}this.children().children("input[rel='required'], textarea[rel='required']").addClass("required");realBorder=$(this).css('borderColor');if(e.labelInside==true){this.children(""+e.wrap+"").children("label").each(function(){var a=$(this).html();$(this).next().attr("value",a);$(this).hide()});this.children(""+e.wrap+"").children("input.text, input.password, textarea").focus(function(){var a=$(this).attr("value");var b=$(this).prev().html();if(e.activeBg==true){$(this).animate({backgroundColor:e.fadeThis},750)}realBorder=$(this).css('borderLeftColor');if(e.activeBorder==true){$(this).animate({borderTopColor:e.newBorder,borderRightColor:e.newBorder,borderBottomColor:e.newBorder,borderLeftColor:e.newBorder},750)}if($(this).attr("value")==b){$(this).attr("value","").blur(function(){if(e.activeBg==true){$(this).animate({backgroundColor:e.origFade},750)}if(!$(this).attr("value")){$(this).attr("value",a)}})}})}this.children(""+e.wrap+"").children("input.text, input.password, textarea").blur(function(){if(e.activeBorder==true){$(this).animate({borderTopColor:realBorder,borderRightColor:realBorder,borderBottomColor:realBorder,borderLeftColor:realBorder},750)}});if(e.passwordText==true){this.children(""+e.wrap+"").children("input.password").attr("value","");passwordLabel=this.children(""+e.wrap+"").children("input.password").prev().html();this.children(""+e.wrap+"").children("input.password").before('<input value="'+passwordLabel+'" type="text" class="text removeit" style="position:absolute;z-index:10;" />');$(".removeit").focus(function(){$(this).hide();$("input.password").focus()});$("input.password").blur(function(){if($("input.password").attr("value")==""){$(".removeit").fadeIn(500)}if(e.activeBorder==true){$(this).stop().animate({borderTopColor:realBorder,borderRightColor:realBorder,borderBottomColor:realBorder,borderLeftColor:realBorder},750)}})}}})(jQuery);