jQuery.cookie=function(b,a,e){if(arguments.length>1&&(a===null||typeof a!=="object")){e=jQuery.extend({},e);if(a===null){e.expires=-1}if(typeof e.expires==="number"){var f=e.expires,d=e.expires=new Date();d.setDate(d.getDate()+f)}return(document.cookie=[encodeURIComponent(b),"=",e.raw?String(a):encodeURIComponent(String(a)),e.expires?"; expires="+e.expires.toUTCString():"",e.path?"; path="+e.path:"",e.domain?"; domain="+e.domain:"",e.secure?"; secure":""].join(""))}e=a||{};var c,g=e.raw?function(h){return h}:decodeURIComponent;return(c=new RegExp("(?:^|; )"+encodeURIComponent(b)+"=([^;]*)").exec(document.cookie))?g(c[1]):null};
