// v.10.0810tt
var _gaq = _gaq || []; (function() {
    var ga = document.createElement("script");
    ga.type = "text/javascript";
    ga.async = true;
    ga.src = ("https:" == document.location.protocol ? "https://ssl": "http://www") + ".google-analytics.com/ga.js";
    var s = document.getElementsByTagName("script")[0];
    s.parentNode.insertBefore(ga, s);
})();
var GLOB55_trackerName;
var GLOB55_ftSlot;
var GLOB55_customVariableValue;
var GLOB55_trackerInstance;
var GLOB55_setCustomVarFunction;
var GLOB55_trackEventFunction;
var GLOB55_firstPageview = false;
function Ga55() {}
Ga55.prototype.a = "";
Ga55.prototype.b = "";
Ga55.prototype.c = "";
Ga55.prototype.cc = false;
Ga55.prototype.d = "";
Ga55.prototype.e = [];
Ga55.prototype.f = false;
Ga55.prototype.g = "";
Ga55.prototype.d1 = "";
Ga55.prototype.d2 = "";
Ga55.prototype.d3 = "";
Ga55.prototype.d4 = "";
Ga55.prototype.d5 = "";
Ga55.prototype.h = "";
Ga55.prototype.i = "";
Ga55.prototype.k = false;
Ga55.prototype.multiTouchpoint = "";
Ga55.prototype.literals = ["_gat._createTracker", "_setDomainName", "_setCustomVar", "_trackPageview", "_addTrans", "_addItem", "_trackTrans", "_trackEvent", "_setAllowLinker", "_setAllowHash", "_getLinkerUrl", "_setAllowAnchor", "_getVisitorCustomVar", "_setReferrerOverride", "_addOrganic"];
Ga55.prototype.CREATETRACKER = 0;
Ga55.prototype.SETDOMAINNAME = 1;
Ga55.prototype.SETCUSTOMVAR = 2;
Ga55.prototype.TRACKPAGEVIEW = 3;
Ga55.prototype.ADDTRANS = 4;
Ga55.prototype.ADDITEM = 5;
Ga55.prototype.TRACKTRANS = 6;
Ga55.prototype.TRACKEVENT = 7;
Ga55.prototype.SETALLOWLINKER = 8;
Ga55.prototype.SETALLOWHASH = 9;
Ga55.prototype.GETLINKERURL = 10;
Ga55.prototype.SETALLOWANCHOR = 11;
Ga55.prototype.GETVISITORCUSTOMVAR = 12;
Ga55.prototype.SETREFERREROVERRIDE = 13;
Ga55.prototype.ADDORGANIC = 14;
function Tools55() {}
Tools55.prototype.isArray = function(obj) {
    if (obj) {
        if (obj.constructor.toString().indexOf("Array") == -1) {
            return false;
        } else {
            return true;
        }
    } else {
        return false;
    }
};
Tools55.prototype.checkArrayIndex = function(arr, index, opt_returnIfFalse) {
    if (arr && index >= 0) {
        if (arr.length <= index) {
            if (opt_returnIfFalse) {
                return opt_returnIfFalse;
            } else {
                return "";
            }
        } else {
            return arr[index];
        }
    }
    return "";
};
Tools55.prototype.getVisitCount = function() {
    var returnValue = "";
    var regVC = new RegExp("(?:^|;\\s)__utma=[\\d.]+\\.(\\d+)(?:;|$)");
    var resVC = regVC.exec(document.cookie);
    if (resVC) {
        if (resVC.length > 1) {
            returnValue = resVC[1];
        }
    }
    return returnValue;
};
Tools55.prototype.getCurrentVisitStartTime = function() {
    var returnValue = "";
    var regVST = new RegExp("(?:^|;\\s)__utma=[\\d.]+\\.(\\d+)\\.\\d+(?:;|$)");
    var resVST = regVST.exec(document.cookie);
    if (resVST) {
        if (resVST.length > 1) {
            returnValue = resVST[1];
        }
    }
    return returnValue;
};
Tools55.prototype.getFirstVisitStartTime = function() {
    var returnValue = "";
    var regFVST = new RegExp("(?:^|;\\s)__utma=(?:\\d+\\.){2}(\\d+)");
    var resFVST = regFVST.exec(document.cookie);
    if (resFVST) {
        if (resFVST.length > 1) {
            returnValue = resFVST[1];
        }
    }
    return returnValue;
};
Tools55.prototype._uGC = function(l, n, s) {
    if (!l || l == "" || !n || n == "" || !s || s == "") {
        return "-";
    }
    var i;
    var i2;
    var i3;
    var c = "-";
    i = l.indexOf(n);
    i3 = n.indexOf("=") + 1;
    if (i > -1) {
        i2 = l.indexOf(s, i);
        if (i2 < 0) {
            i2 = l.length;
        }
        c = l.substring(i + i3, i2);
    }
    return c;
};
Tools55.prototype.getTimeToConversion = function() {
    var returnValue = "";
    var currentVisitStartTime = this.getCurrentVisitStartTime();
    var firstVisitStartTime = this.getFirstVisitStartTime();
    if (currentVisitStartTime && firstVisitStartTime) {
        currentVisitStartTime = parseInt(currentVisitStartTime);
        firstVisitStartTime = parseInt(firstVisitStartTime);
        var duration = currentVisitStartTime - firstVisitStartTime;
        if (duration > 0) {
            var hoursToConversion = Math.ceil(duration / 3600);
            if (hoursToConversion < 24) {
                returnValue = hoursToConversion + "h";
            } else {
                var daysToConversion = Math.floor(hoursToConversion / 24);
                returnValue = daysToConversion;
            }
        }
    }
    return returnValue;
};
Tools55.prototype.getUtmString = function() {
    var returnValue = "";
    var z = this._uGC(document.cookie, "__utmz=", ";");
    if (z) {
        var source = this._uGC(z, "utmcsr=", "|");
        var medium = this._uGC(z, "utmcmd=", "|");
        var term = this._uGC(z, "utmctr=", "|");
        var gclid = this._uGC(z, "utmgclid=", "|");
        if (gclid !== "-") {
            source = "google";
            medium = "cpc";
        }
        var utmArray = new Array;
        utmArray.push(source);
        utmArray.push(medium);
        utmArray.push(term);
        var returnValue = utmArray.join("_");
        returnValue = returnValue.replace("%20", "-");
        returnValue = returnValue.replace(/[^a-zA-Z0-9-~!*_.]/g, "");
    }
    return returnValue;
};
Ga55.prototype.fa = function(slot, name, value, ignoredScope) {
    if (slot && name && value) {
        _gaq.push([this.b + "." + this.literals[this.SETCUSTOMVAR], slot, name.replace(/\s/g, "_"), value.replace(/\s/g, "_"), 1]);
    }
};
Ga55.prototype.fb = function(category, action, opt_label, opt_value) {
    if (category && action) {
        if (typeof opt_label == "undefined") {
            var opt_label = "";
        }
        if (typeof opt_value == "undefined") {
            var opt_value = 0;
        }
        _gaq.push([this.b + "." + this.literals[this.TRACKEVENT], category.replace(/\s/g, "_"), action.replace(/\s/g, "_"), opt_label.replace(/\s/g, "_"), opt_value]);
    }
};
Ga55.prototype.fc = function(opt_uri) {
    if (opt_uri) {
        _gaq.push([this.b + "." + this.literals[this.TRACKPAGEVIEW], opt_uri]);
    } else {
        _gaq.push([this.b + "." + this.literals[this.TRACKPAGEVIEW]]);
    }
};
Ga55.prototype.doTheJob = function() {
    var tools55 = new Tools55;
    GLOB55_trackerInstance = this;
    var d = document,
    l = d.location,
    p = l.pathname,
    s = l.search,
    h = l.hash,
    hn = l.hostname,
    c = d.cookie,
    sSup = "";
    if (!this.b) {
        this.b = "t55";
    }
    GLOB55_trackerName = this.b;
    _gaq.push([this.literals[this.CREATETRACKER], this.a, this.b]);
    _gaq.push([this.b + "." + this.literals[this.SETALLOWANCHOR], true]);
    if (this.c) {
        _gaq.push([this.b + "." + this.literals[this.SETDOMAINNAME], this.c]);
    }
    if (this.cc == true) {
        _gaq.push([this.b + "." + this.literals[this.SETALLOWLINKER], true]);
        _gaq.push([this.b + "." + this.literals[this.SETALLOWHASH], false]);
    }
    if (c.match(/^(?!^(?=.*(?:^|;\s)__utmb)(?=.*(?:^|;\s)__utmc))/i)) {
        GLOB55_firstPageview = true;
        if (d.referrer.match(/^http:\/\/([^\/]+)/i)) {
            var ref55 = d.referrer.match(/^http:\/\/([^\/]+)/i)[1];
            document.cookie = "__55ref=" + escape(ref55) + ";path=/;domain="+gaDomainName;
            regGoogleImages = new RegExp(/^https?:\/\/(?:images|www)\.google\.[^\/]{2,8}\/(?:images|imghp|imgres|imglanding).*(?:\?|&)prev=[^&]*(?:%3F|%26)q%3D(.*?)(?:%26|&|$)/);
            var resGoogleImages = regGoogleImages.exec(d.referrer);
            if (resGoogleImages != null) {
                _gaq.push([this.b + "." + this.literals[this.SETREFERREROVERRIDE], "http://images.google.com/search?q=" + resGoogleImages[1]]);
                _gaq.push([this.b + "." + this.literals[this.ADDORGANIC], "images.google", "q", true]);
            } else if (d.referrer.match(/^https?:\/\/(?:maps\.google\.[^\/]{2,8}\/|www\.google\.[^\/]{2,8}\/(?:map(?:s|hp)|m\/place))/)) {
                regGoogleMapsQ = new RegExp(/(?:\?|&)q=([^&]+)/);
                var resGoogleMapsQ = regGoogleMapsQ.exec(d.referrer);
                var googleMapsQ = resGoogleMapsQ != null ? resGoogleMapsQ[1] : "(not%20set)";
                _gaq.push([this.b + "." + this.literals[this.SETREFERREROVERRIDE], "http://maps.google.com/search?q=" + googleMapsQ]);
                _gaq.push([this.b + "." + this.literals[this.ADDORGANIC], "maps.google", "q", true]);
            }
        } else {
            document.cookie = "__55ref=direct;path=/";
        }
    }
    if (this.e[0]) {
        if (tools55.isArray(this.e) == true) {
            for (i = 0; i < this.e.length; i++) {
                sSup = sSup + (sSup.length ? "&": "?") + this.e[i];
            }
        } else {
            sSup = sSup + (sSup.length ? "&": "?") + this.e;
        }
    }
    if (this.f == true && h.match(/^#/)) {
        sSup = sSup + (sSup.length ? "&": "?") + h.replace(/^#/, "");
    }
    if (this.g) {
        _gaq.push([this.b + "." + this.literals[this.SETCUSTOMVAR], 1, "Page_Category", this.g.replace(/\s/g, "_"), 3]);
    }
    if (this.h || this.i || this.k == true) {
        if (this.h) {
            sSup = sSup + (sSup.length ? "&": "?") + "kw55=" + this.h;
        }
        if (this.i) {
            sSup = sSup + (sSup.length ? "&": "?") + "cat55=" + this.i;
        }
        if (this.k == true) {
            sSup = sSup + (sSup.length ? "&": "?") + "res55=no_results";
        } else {
            sSup = sSup + (sSup.length ? "&": "?") + "res55=results";
        }
    }
    if (this.d) {
        p = this.d;
        s = "";
    }
    if (this.d1 || this.d2 || this.d3 || this.d4 || this.d5) {
        this.d = (this.d1.length ? "/" + this.d1: "") + (this.d2.length ? "/" + this.d2: "") + (this.d3.length ? "/" + this.d3: "") + (this.d4.length ? "/" + this.d4: "") + (this.d3.length ? "/" + this.d3: "");
        p = this.d;
        s = "";
    }
    _gaq.push([this.b + "." + this.literals[this.TRACKPAGEVIEW], p + s + (sSup.length ? (s.length ? "&": "?") + sSup.replace(/^\?/, "") : "")]);

}


//eval((function(x){var d="";var p=0;while(p<x.length){if(x.charAt(p)!="`")d+=x.charAt(p++);else{var l=x.charCodeAt(p+3)-28;if(l>4)d+=d.substr(d.length-x.charCodeAt(p+1)*96-x.charCodeAt(p+2)+3104-l,l);else d+="`";p+=4}}return d})("var _gaq=_gaq||[];(function(){var ga=document.createElement(\"script\");ga.type=\"text/java` 4#;ga.async=true;ga.src=(\"https:\"=` q&location.protocol?` >#//ssl\":` )!://www\")+\".google-analytics.com/ga.js\";var s` q&get`!l#sByTagName`!s&[0];s.parentNode.insertBefore(ga,s);})()` q!GLOB55_trackerName` +(ftSlot` &(customVariableValu` D)` a#Instanc` .)setC` U$F`$+#` J-Event` *0firstPageview=false;`$p$ Ga55(){}Ga55`#i\"type.a=\"\";` %+b=` \".c` 5/cc` ~#` )+d` 9/e=[]` $,f` I2g` L/d1` a/d2` 603` 604` 605` \"/h` 6/i` 5/k`!f2multiTouchpoint` F/literals=[\"_gat._`(y\"T`%O\"\",\"_setDomainName` *#`%M%\",\"`%@\"`% $\",\"_addTrans` %#Item` ?%` 0%`%r&` m#AllowLin`!-&` -!Hash\",\"_get` 7\"Url` 4(Ancho` M!getVisitor`!R)setReferrerOverrid`\"!!addOrganic\"`%9-CREATETRACKER=0` /,SETDOMAINNAME=1` ,/CUSTOMVAR=2` .,` q!PAGEVIEW=3` /,ADDTRANS=4` '/ITEM=5` ]1` O\"6` '1EVENT=7`!U/ALLOWLINKER=8` (4HASH=9` .,GET` S\"URL=1`\"p0` X!ANCHOR=1`\"u-GETVISITOR`##&1`\"}-SETREFERREROVERRIDE=1`#!0ORGANIC=14`+Z&Tools`+a\"` $#`(Z(sArray=`1!%obj){if(obj){` \"\".constructor.toString().indexOf(\"` ^!\")==-1){return `)C\"}else` +$`13!}` &)` ?#};`!H.check` u!Index`!X&arr,`!6!,opt_` c\"IfFalse`!m!arr&&` <!>=0` *$.length<=` 4!`\"4\"` L.`!O#` )-`!{)\"\"`!v+arr[` r!];}}` :&`\"!/`)T$Count`\"(&){var ` T\"`1T!=\"`34\"regVC=new RegExp(\"(?:^|;\\\\s)__utma=[\\\\d.]+\\\\.(\\\\d+)(?:;|$)\"`2\"resVC=` b!.exec(`4!%cookie);if(` @!`\"n!` %!`#$#>`$c%`!M\"` 7![1`\":&`!e(`\"64Curren`\"O\"StartTime`\"2CST`\",J\\\\.\\\\d+`\"O.ST`\"]!ST`\"E:ST`\"[%ST`\"J7ST`\"6LFirs`\"/QF`\"D=(?:\\\\d+\\\\.){2}`\"c\"`\"Q&` [!` a#`\"@9F`\"S'` H!`\"F5F`\"0L_uGC`\"D&l,n,s`!%!!l||l==\"\"||!n||n` $#s||s==\"\"`!1$\"-\";}var i`\"0!i2`\"7!i3` \"!c=\"-\";i=l`,#%n);i3=n`,2&=\")+1;if(i>-1){i2` B's,i`\"\\!i2<0` 4#`\"R\";}c=l.subs`-&\"i+i3,i2);`\"M$c`$s4TimeToConversion`$e?c`(/1this`(I5(`$|\"f`&%/` P$`&A/(`\"H!` z1&&` Y/){`!E2parseInt` U2);`!C0` K%` t0`\"(!duration=` a1-` E/;if(` N$>0`#Z\"hours`#t)Math.ceil` C%/3600`\"g!` =-<24`'d*` 1-+\"h\"`0(#`!q!ay` |/floor` l./24);` r(` N,;}`++HUtm`4&\"`&\"?z`%S\"_uGC`*T,,\"`+G!z=\",\";\"`\"s!z` b\"sourc`&,#` U!z,\"utmcsr=\",\"|`+a#medium` 4.md` :(ter` 1/t` ])gclid` 4-` 0\"` @#if(` +!!==\"-\"){`!\\#\"google\";`!F#\"cpc`+1#utmArray`.#!` %!;` +$.push(` ]\")` '+` c\"` &,term`.6$`#Z&` ;%join(\"_\"`$x*` @'.replace(\"%20\",\"-` (?/[^a-zA-Z0-9-~!*_.]/g,\"\"`,$&`%^*Ga`%\\)fa`%U&slot,name,value,ignoredScope`.p!slot&&name&&` >!){_gaq`\"W\"[`$5!b+\".\"+` &!literals` 3\"SETCUSTOMVAR],`!\"%`!~&\\s/g,\"_\")`!8\"` %01]);}`!q.b`!y&category,a` +!,opt_label` %!`!m#if` ?%&&` C\"` 0!typeof ` K%==\"undefined\"`'n\"` 2&\"\";}` F*` y!` =3` 6\"0;}`\"gETRACKEVENT],`!f$`\"`0`!z\"` &0`!c%` %4`!P!`#=2c`#I&opt_uri`\"}!` #%`!YJPAGEVIEW]`!2!uri])`-^#` 1S`!`1doTheJo`%C'`#z\"t`-X\"`*=!`-c#;GLOB55_trackerInstan`,e#`1)\"=`-?$,l=d.loc`07!,p=l.path`(A!s=l.search,h=l.hash,hn=l.host` =!c=d`-$sSup=\"\";if(!`\"E\"){` \"\"=\"t55\";}`!F*Na`4G$b;`\"v,`\"m*CREATE`%j\"R],` /!a,` U\"])` L-`)F8ALLOWANCHOR],tr`%Y!if(` :!c`)JDOMAINNAME`!L#c])`(L\"` (!c==tr`*qL`!Z!LIN`\"B\"`!Y\"` /MHASH],fals`'w!if(c.match(/^(?!^(?=.*(?:^|;\\s)`2X!b)` \"/c))/i)){`$P#firstPageview`\"7!;if(d.referrer` {%http:\\/\\/([^\\/]+` `\"`0O\"f55=` ,C[1];`4<+=\"__55ref=\"+escape(` n!)+\";path=/\";regG`2h!Images`(0!RegExp`!!#s?`!$\"?:i` =!|www)\\.`3<\"\\.`!<!{2,8}` 8(imghp|imgr` '\"landing)`#/!\\?|&)prev=[^&]*(?:%3F|%26)q%3D(.*?)(?:%26|&|$)/`39$s`![)`!i+.exec`#S'`'\"!` E+!=null`%tJREFERREROVERRIDE],\"`#x!//`\"D\"`\"a#.com/`*U\"?q=\"+`!++[1]`&NHADDORGANIC],\"` {)\",\"q\"`'b$`-m! `%{6`$P&maps`$=2|www`$T5map(?:s|hp)|m\\/`0O!))/)){`#u%MapsQ`%h)`$y$q=([^&]+`$P-` M\"` T*`$M.var `!Q\"` H$` S(`$e\"?` '*[1]:\"(not%20set)\"`*?I`$p6map`$p4`!W'`$HU` t'`$q*`2l\"`){5direct`* %}`.#%e[0]`49!`2B#.isArray` 7#)`.B$for(i=0;i<` 3\".length;i++){`1Z!sSup+(sSup` 5#?\"&\":\"?\")`\"0\"e[i]`!`$` +B`!\\'f`!B\"&&h`'-%#/)` x>h.re`&f!` L!,\"\"`0\\'g`)pJCUSTOMVAR],1,\"Page_Category\"`1_\"g`!#&\\s/g,\"_\"),3`1n(h||` #!i|` \"\"k`#W$` 8%`!q>\"kw55=`!_#h` r&i` 8?cat` R&i` R&`!?%` A=res55=no_results\"`+T\"` 1D` L&`!3%d){p=` $\";s=\"\"`!L&d1`# #d2`#)#d3` *$4` *$5){` #\"=` M$`!3%/`\"B#d1:\"\")+` 9#2` ..2` 4(3` ..3` 4(4` ..4` <@;`\"7+`&3ETRACKPAGEVIEW],p+s`#V*(s`#]-` :!`'p&\\?`'v!:\"\")]);};"))

var analyticsCode = "UA-15190183-1", tracker55 = new Ga55();
tracker55.a=analyticsCode;
tracker55.c=gaDomainName;
tracker55.doTheJob();
