jQuery.cookie=function(b,j,m){if(typeof j!="undefined"){m=m||{};if(j===null){j="";m.expires=-1}var e="";if(m.expires&&(typeof m.expires=="number"||m.expires.toUTCString)){var f;if(typeof m.expires=="number"){f=new Date();f.setTime(f.getTime()+(m.expires*24*60*60*1000))}else{f=m.expires}e="; expires="+f.toUTCString()}var l=m.path?"; path="+(m.path):"";var g=m.domain?"; domain="+(m.domain):"";var a=m.secure?"; secure":"";document.cookie=[b,"=",encodeURIComponent(j),e,l,g,a].join("")}else{var d=null;if(document.cookie&&document.cookie!=""){var k=document.cookie.split(";");for(var h=0;h<k.length;h++){var c=jQuery.trim(k[h]);if(c.substring(0,b.length+1)==(b+"=")){d=decodeURIComponent(c.substring(b.length+1));break}}}return d}};$.emailReqEx=(/^((([a-z]|\d|[!#\$%&'\*\+\-\/=\?\^_`{\|}~]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])+(\.([a-z]|\d|[!#\$%&'\*\+\-\/=\?\^_`{\|}~]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])+)*)|((\x22)((((\x20|\x09)*(\x0d\x0a))?(\x20|\x09)+)?(([\x01-\x08\x0b\x0c\x0e-\x1f\x7f]|\x21|[\x23-\x5b]|[\x5d-\x7e]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(\\([\x01-\x09\x0b\x0c\x0d-\x7f]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF]))))*(((\x20|\x09)*(\x0d\x0a))?(\x20|\x09)+)?(\x22)))@((([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.)+(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.?$/i);$.fn.validateField=function(a){a=typeof(a)=="undefined"?true:a;$(this).each(function(){var b=true;var c=!$(this).is("#comment_author_email")||$.emailReqEx.test($("#comment_author_email").val());if(a){if($.trim($(this).val())!=""&&c){$(this).parent("p").removeClass("requiredError")}else{$(this).parent("p").addClass("requiredError")}}$("#comment_author, #comment_author_email, #comment_body").each(function(){b=b&&($.trim($(this).val())!="")});$("#new_comment").find("input[type=submit]").attr("disabled",b?"":"disabled")})};$(function(){if($("#new_comment").length!=0){$("#comment_author, #comment_author_email, #comment_author_url").valFromCookie();$("#new_comment").submit(function(){$.ajax({type:"POST",url:$(this).attr("action"),data:($(this).serialize()),success:function(b){$("#comment_list").append(b);$("#comment_author, #comment_author_email, #comment_author_url").valToCookie();$("#new_comment textarea").val("").validateField(false)}});return false})}var a=function(){$(this).validateField()};$("#comment_author, #comment_author_email, #comment_body").keyup(a).blur(a).validateField(false)});$.fn.valToCookie=function(){$(this).each(function(){$.cookie($(this).attr("id"),$(this).val(),{expires:356,path:"/"})})};$.fn.valFromCookie=function(){$(this).each(function(){$(this).val($.cookie($(this).attr("id")))})};