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