jQuery.cookie=function(b,j,m){var e,l,g,a,f,d,k,c,h;if(typeof j!="undefined"){m=m||{};if(j===null){j="";m.expires=-1}e="";if(m.expires&&(typeof m.expires=="number"||m.expires.toUTCString)){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()}l=m.path?"; path="+(m.path):"";g=m.domain?"; domain="+(m.domain):"";a=m.secure?"; secure":"";document.cookie=[b,"=",encodeURIComponent(j),e,l,g,a].join("")}else{d=null;if(document.cookie&&document.cookie!=""){k=document.cookie.split(";");for(h=0;h<k.length;h++){c=jQuery.trim(k[h]);if(c.substring(0,b.length+1)==(b+"=")){d=decodeURIComponent(c.substring(b.length+1));break}}}return d}};