﻿/* JavaScript used by Integrity Home Page large sliding image only	*/
/*																	*/
/* Custom code and also third-party code via DKY					*/

/* OUR CUSTOM CODE */



// Triggers the slider
$(document).ready(function () {

	$('#yourSliderId').DDSlider({

		nextSlide: '.slider_arrow_right',
		prevSlide: '.slider_arrow_left',
		selector: '.slider_selector',
		trans: 'square',
		rows: 3,
		columns: 9,
		delay: 30

	});

	$(".originalcontainer").hover(
				function () { $(this).removeClass("disable") },
				function () { $(this).addClass("disable") }
			);
	$(".slider-nav-arrow").hover(
				function () {
					$(this).removeClass("disable");
					// $(this).children("first-child").css("display", "block !important");
					// $(this).children.css("display", "block !important");
					// alert("Hover over nav arrow container");
				},
				function () {
					$(this).addClass("disable");
					// alert("Not hovering over nav arrow container");
				}
			);
	$("#wascontainer > #left").hover(
		function () { $(this).removeClass("disable") },
		function () { $(this).addClass("disable") }
	);
	$("#wascontainer > #right").hover(
		function () { $(this).removeClass("disable") },
		function () { $(this).addClass("disable") }
	);

});




/* *************************************************************************************************** */



/* From jquery.easing.1.3.js */
/*
* jQuery Easing v1.3 - http://gsgd.co.uk/sandbox/jquery/easing/
*
* Uses the built in easing capabilities added In jQuery 1.1
* to offer multiple easing options
*
* TERMS OF USE - jQuery Easing
* 
* Open source under the BSD License. 
* 
* Copyright Â© 2008 George McGinley Smith
* All rights reserved.
* 
* Redistribution and use in source and binary forms, with or without modification, 
* are permitted provided that the following conditions are met:
* 
* Redistributions of source code must retain the above copyright notice, this list of 
* conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright notice, this list 
* of conditions and the following disclaimer in the documentation and/or other materials 
* provided with the distribution.
* 
* Neither the name of the author nor the names of contributors may be used to endorse 
* or promote products derived from this software without specific prior written permission.
* 
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY 
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
*  COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
*  EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
*  GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED 
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
*  NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED 
* OF THE POSSIBILITY OF SUCH DAMAGE. 
*
*/

// t: current time, b: begInnIng value, c: change In value, d: duration
jQuery.easing['jswing'] = jQuery.easing['swing'];

jQuery.extend(jQuery.easing,
{
	def: 'easeOutQuad',
	swing: function (x, t, b, c, d) {
		//alert(jQuery.easing.default);
		return jQuery.easing[jQuery.easing.def](x, t, b, c, d);
	},
	easeInQuad: function (x, t, b, c, d) {
		return c * (t /= d) * t + b;
	},
	easeOutQuad: function (x, t, b, c, d) {
		return -c * (t /= d) * (t - 2) + b;
	},
	easeInOutQuad: function (x, t, b, c, d) {
		if ((t /= d / 2) < 1) return c / 2 * t * t + b;
		return -c / 2 * ((--t) * (t - 2) - 1) + b;
	},
	easeInCubic: function (x, t, b, c, d) {
		return c * (t /= d) * t * t + b;
	},
	easeOutCubic: function (x, t, b, c, d) {
		return c * ((t = t / d - 1) * t * t + 1) + b;
	},
	easeInOutCubic: function (x, t, b, c, d) {
		if ((t /= d / 2) < 1) return c / 2 * t * t * t + b;
		return c / 2 * ((t -= 2) * t * t + 2) + b;
	},
	easeInQuart: function (x, t, b, c, d) {
		return c * (t /= d) * t * t * t + b;
	},
	easeOutQuart: function (x, t, b, c, d) {
		return -c * ((t = t / d - 1) * t * t * t - 1) + b;
	},
	easeInOutQuart: function (x, t, b, c, d) {
		if ((t /= d / 2) < 1) return c / 2 * t * t * t * t + b;
		return -c / 2 * ((t -= 2) * t * t * t - 2) + b;
	},
	easeInQuint: function (x, t, b, c, d) {
		return c * (t /= d) * t * t * t * t + b;
	},
	easeOutQuint: function (x, t, b, c, d) {
		return c * ((t = t / d - 1) * t * t * t * t + 1) + b;
	},
	easeInOutQuint: function (x, t, b, c, d) {
		if ((t /= d / 2) < 1) return c / 2 * t * t * t * t * t + b;
		return c / 2 * ((t -= 2) * t * t * t * t + 2) + b;
	},
	easeInSine: function (x, t, b, c, d) {
		return -c * Math.cos(t / d * (Math.PI / 2)) + c + b;
	},
	easeOutSine: function (x, t, b, c, d) {
		return c * Math.sin(t / d * (Math.PI / 2)) + b;
	},
	easeInOutSine: function (x, t, b, c, d) {
		return -c / 2 * (Math.cos(Math.PI * t / d) - 1) + b;
	},
	easeInExpo: function (x, t, b, c, d) {
		return (t == 0) ? b : c * Math.pow(2, 10 * (t / d - 1)) + b;
	},
	easeOutExpo: function (x, t, b, c, d) {
		return (t == d) ? b + c : c * (-Math.pow(2, -10 * t / d) + 1) + b;
	},
	easeInOutExpo: function (x, t, b, c, d) {
		if (t == 0) return b;
		if (t == d) return b + c;
		if ((t /= d / 2) < 1) return c / 2 * Math.pow(2, 10 * (t - 1)) + b;
		return c / 2 * (-Math.pow(2, -10 * --t) + 2) + b;
	},
	easeInCirc: function (x, t, b, c, d) {
		return -c * (Math.sqrt(1 - (t /= d) * t) - 1) + b;
	},
	easeOutCirc: function (x, t, b, c, d) {
		return c * Math.sqrt(1 - (t = t / d - 1) * t) + b;
	},
	easeInOutCirc: function (x, t, b, c, d) {
		if ((t /= d / 2) < 1) return -c / 2 * (Math.sqrt(1 - t * t) - 1) + b;
		return c / 2 * (Math.sqrt(1 - (t -= 2) * t) + 1) + b;
	},
	easeInElastic: function (x, t, b, c, d) {
		var s = 1.70158; var p = 0; var a = c;
		if (t == 0) return b; if ((t /= d) == 1) return b + c; if (!p) p = d * .3;
		if (a < Math.abs(c)) { a = c; s = p / 4; }
		else s = p / (2 * Math.PI) * Math.asin(c / a);
		return -(a * Math.pow(2, 10 * (t -= 1)) * Math.sin((t * d - s) * (2 * Math.PI) / p)) + b;
	},
	easeOutElastic: function (x, t, b, c, d) {
		var s = 1.70158; var p = 0; var a = c;
		if (t == 0) return b; if ((t /= d) == 1) return b + c; if (!p) p = d * .3;
		if (a < Math.abs(c)) { a = c; s = p / 4; }
		else s = p / (2 * Math.PI) * Math.asin(c / a);
		return a * Math.pow(2, -10 * t) * Math.sin((t * d - s) * (2 * Math.PI) / p) + c + b;
	},
	easeInOutElastic: function (x, t, b, c, d) {
		var s = 1.70158; var p = 0; var a = c;
		if (t == 0) return b; if ((t /= d / 2) == 2) return b + c; if (!p) p = d * (.3 * 1.5);
		if (a < Math.abs(c)) { a = c;  s = p / 4; }
		else s = p / (2 * Math.PI) * Math.asin(c / a);
		if (t < 1) return -.5 * (a * Math.pow(2, 10 * (t -= 1)) * Math.sin((t * d - s) * (2 * Math.PI) / p)) + b;
		return a * Math.pow(2, -10 * (t -= 1)) * Math.sin((t * d - s) * (2 * Math.PI) / p) * .5 + c + b;
	},
	easeInBack: function (x, t, b, c, d, s) {
		if (s == undefined) s = 1.70158;
		return c * (t /= d) * t * ((s + 1) * t - s) + b;
	},
	easeOutBack: function (x, t, b, c, d, s) {
		if (s == undefined) s = 1.70158;
		return c * ((t = t / d - 1) * t * ((s + 1) * t + s) + 1) + b;
	},
	easeInOutBack: function (x, t, b, c, d, s) {
		if (s == undefined) s = 1.70158;
		if ((t /= d / 2) < 1) return c / 2 * (t * t * (((s *= (1.525)) + 1) * t - s)) + b;
		return c / 2 * ((t -= 2) * t * (((s *= (1.525)) + 1) * t + s) + 2) + b;
	},
	easeInBounce: function (x, t, b, c, d) {
		return c - jQuery.easing.easeOutBounce(x, d - t, 0, c, d) + b;
	},
	easeOutBounce: function (x, t, b, c, d) {
		if ((t /= d) < (1 / 2.75)) {
			return c * (7.5625 * t * t) + b;
		} else if (t < (2 / 2.75)) {
			return c * (7.5625 * (t -= (1.5 / 2.75)) * t + .75) + b;
		} else if (t < (2.5 / 2.75)) {
			return c * (7.5625 * (t -= (2.25 / 2.75)) * t + .9375) + b;
		} else {
			return c * (7.5625 * (t -= (2.625 / 2.75)) * t + .984375) + b;
		}
	},
	easeInOutBounce: function (x, t, b, c, d) {
		if (t < d / 2) return jQuery.easing.easeInBounce(x, t * 2, 0, c, d) * .5 + b;
		return jQuery.easing.easeOutBounce(x, t * 2 - d, 0, c, d) * .5 + c * .5 + b;
	}
});

/*
*
* TERMS OF USE - EASING EQUATIONS
* 
* Open source under the BSD License. 
* 
* Copyright Â© 2001 Robert Penner
* All rights reserved.
* 
* Redistribution and use in source and binary forms, with or without modification, 
* are permitted provided that the following conditions are met:
* 
* Redistributions of source code must retain the above copyright notice, this list of 
* conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright notice, this list 
* of conditions and the following disclaimer in the documentation and/or other materials 
* provided with the distribution.
* 
* Neither the name of the author nor the names of contributors may be used to endorse 
* or promote products derived from this software without specific prior written permission.
* 
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY 
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
*  COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
*  EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
*  GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED 
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
*  NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED 
* OF THE POSSIBILITY OF SUCH DAMAGE. 
*
*/





/* *************************************************************************************************** */
/* From jquery.DDSlider.min.js */

/*
* DDSlider v1.7 - http://codecanyon.net/item/ddslider-10-transitions-inline-content-support/104797
* 
* Copyright © 2010 Guilherme Salum
* All rights reserved.
* 
* You may not modify and/or redistribute this file
* save cases where Extended License has been purchased
*
*/

eval(function (p, a, c, k, e, r) { e = function (c) { return (c < a ? '' : e(parseInt(c / a))) + ((c = c % a) > 35 ? String.fromCharCode(c + 29) : c.toString(36)) }; if (!''.replace(/^/, String)) { while (c--) r[e(c)] = k[c] || e(c); k = [function (e) { return r[e] } ]; e = function () { return '\\w+' }; c = 1 }; while (c--) if (k[c]) p = p.replace(new RegExp('\\b' + e(c) + '\\b', 'g'), k[c]); return p } ('(K($){$.1Z.2i({2j:K(){A b=B;1q=1w;A c={1x:\'1y\',O:2k,1z:2l,S:20,1A:1,13:15,R:10,14:3,1e:\'2m\'};E=2n[0]||{};L(E.1x===17){E.1x=c.1x}L(E.O===17){E.O=c.O}L(E.S===17){E.S=c.S}L(E.1z===17){E.1z=c.1z}L(E.1A===17){E.1A=c.1A}L(E.13===17){E.13=c.13}L(E.R===17){E.R=c.R}L(E.14===17){E.14=c.14}L(E.1e===17){E.1e=c.1e}E.J=B.J();E.M=B.M();B.H(\'Y:1H\').V(\'F\');A d=1;L(E.1f===21){B.U(\'<22 16="2o"></22>\')}B.H(\'Y\').23(K(){$(B).V(\'24\'+d);L(E.1f===17){}W{L(d==1){$(E.1f).U(\'<Y 16="F 1I\'+d+\'"></Y>\')}W{$(E.1f).U(\'<Y 16="1I\'+d+\'"></Y>\')}}d++});A e=0;L(B.H(\'Y\').1B==1){1J=1}W{1J=0}L(1J===0){L(E.1D===17){}W{$(E.1D).1K(K(){L(1q===1w){b.1D(E);e=1}})}L(E.1r===17){}W{$(E.1r).1K(K(){L(1q===1w){b.1r(E);e=1}})}$(E.1f).H(\'Y\').1K(K(){A a=$(B).E(\'16\').1L(\' \');L(a[0]==\'F\'||a[1]==\'F\'){}W{a=a[0].1L(\'2p\');L(1q===1w){e=1;b.25(a[1],E)}}});A f=0;$(B).2q(K(){f=1},K(){f=0});2r(K(){L(E.1A==1){L(f===0&&e===0){b.1r(E)}}W{L(e===0){b.1r(E)}}},E.1z)}},1r:K(){A a=B.H(\'Y.F\');A b=a.1E(\'Y\');A c=$(E.1f).H(\'Y.F\');A d=$(E.1f).H(\'Y.F\').1E();L(b.1B>0){}W{b=B.H(\'Y:1H\');d=$(E.1f).H(\'Y:1H\')}B.1F(E,b,a,d,c)},1D:K(){A a=B.H(\'Y.F\');A b=a.26(\'Y\');A c=$(E.1f).H(\'Y.F\');A d=$(E.1f).H(\'Y.F\').26();L(b.1B>0){}W{b=B.H(\'Y:27\');d=$(E.1f).H(\'Y:27\')}B.1F(E,b,a,d,c)},25:K(a){A b=B.H(\'Y.F\');A c=B.H(\'Y.24\'+a);A d=$(E.1f).H(\'Y.F\');A e=$(E.1f).H(\'Y.1I\'+a);B.1F(E,c,b,e,d)},1F:K(a,b,c,d,e){A f=b.E(\'16\').1L(\' \');A g=f[0];L(g==\'\'){g=a.1x}L(g==\'1y\'||g==\'1M\'||g==\'1N\'||g==\'1O\'||g==\'1P\'||g==\'1Q\'||g==\'1R\'||g==\'1S\'||g==\'1T\'||g==\'1U\'||g==\'1V\'||g==\'1W\'){}W{g=\'1y\'}L(g==\'1y\'){A h=[\'1N\',\'1M\',\'1O\',\'1P\',\'1T\',\'1Q\',\'1R\',\'1S\',\'1U\',\'1V\',\'1W\'];A i=[0,1,2,3,4,5,6,7,8,9,10];A j=$.1s(i);g=h[j[0]]}L(g==\'1M\'){B.1X(a,b,c,d,e)}W L(g==\'1N\'){B.28(a,b,c,d,e)}W L(g==\'1O\'){B.29(a,b,c,d,e)}W L(g==\'1P\'){B.2a(a,b,c,d,e)}W L(g==\'1T\'){B.2b(a,b,c,d,e)}W L(g==\'1Q\'){B.2c(a,b,c,d,e)}W L(g==\'1R\'){B.2d(a,b,c,d,e)}W L(g==\'1S\'){B.2e(a,b,c,d,e)}W L(g==\'1U\'){B.2f(a,b,c,d,e)}W L(g==\'1V\'){B.2g(a,b,c,d,e)}W L(g==\'1W\'){B.2h(a,b,c,d,e)}W{B.1X(a,b,c,d,e)}},1X:K(a,b,c,d,e){A f=B;B.1g();b.P({C:1});b.V(\'1E\');e.11(\'F\');d.V(\'F\');c.2s().I({C:0},a.S,K(){b.V(\'F\').11(\'1E\');c.11(\'F\').P({C:1});f.1h()})},28:K(a,b,c,d,e){A f=B;B.1g();b.P({C:1});A g=18.19(a.J/a.13);A h=a.M;A i=(h-(h*2));A j=1;T(j<=a.13){A k=(j*g)-g;B.U(\'<G 16="1p 1a\'+j+\'" N="Q: X; 1b: 1c;\'+b.E(\'N\')+\'"></G>\');B.H(\'.1a\'+j).P({Z:k,M:h,J:g,12:i,\'z-1k\':3,\'1l-Q\':\'-\'+k+\'D 12\'});j++}A l=1;T(l<=a.13){A m=(l*g)-g;A n=(l*a.O);B.H(\'.1a\'+l).U(\'<G N="Q: X; Z: -\'+m+\'D; J: \'+a.J+\'D; M: \'+a.M+\'D;">\'+b.1i()+\'</G>\');B.H(\'.1a\'+l).I({C:1},n).I({12:0},{S:a.S,1m:a.1e});l++}e.11(\'F\');d.V(\'F\');A o=(a.13*a.O);b.I({C:0},o).I({C:0},a.S,K(){$(B).V(\'F\').P({C:1});c.I({C:0},1n,K(){$(B).11(\'F\');f.H(\'.1p\').1o();f.1h()})})},29:K(a,b,c,d,e){A f=B;B.1g();b.P({C:1});A g=18.19(a.J/a.13);A h=a.M;A i=h;A j=1;T(j<=a.13){A k=(j*g)-g;B.U(\'<G 16="1p 1a\'+j+\'" N="Q: X; 1b: 1c;\'+b.E(\'N\')+\'"></G>\');B.H(\'.1a\'+j).P({Z:k,M:h,J:g,12:i,\'z-1k\':3,\'1l-Q\':\'-\'+k+\'D 12\'});j++}A l=(1);A m=a.13;g=18.19(a.J/a.13);h=a.M;T(l<=a.13){A n=(l*g)-g;A o=(l*a.O);B.H(\'.1a\'+l).U(\'<G N="Q: X; Z: -\'+n+\'D; J: \'+a.J+\'D; M: \'+a.M+\'D;">\'+b.1i()+\'</G>\');B.H(\'.1a\'+m).I({C:1},o).I({12:0},{S:20,1m:a.1e});l++;m--}e.11(\'F\');d.V(\'F\');A p=(a.13*a.O);b.I({C:0},p).I({C:0},a.S,K(){$(B).V(\'F\').P({C:1});c.I({C:0},1n,K(){$(B).11(\'F\');f.H(\'.1p\').1o();f.1h()})})},2d:K(a,b,c,d,e){A f=B;B.1g();b.P({C:1});A g=18.19(a.J/a.13);A h=a.M;A i=1;T(i<=a.13){A j=(i*g)-g;B.U(\'<G 16="1p 1a\'+i+\'" N="Q: X; 1b: 1c;\'+b.E(\'N\')+\'"></G>\');B.H(\'.1a\'+i).P({Z:j,C:0,M:h,J:g,\'z-1k\':3,\'1l-Q\':\'-\'+j+\'D 12\'});i++}A k=1;T(k<=a.13){A l=(k*g)-g;O=(k*a.O);B.H(\'.1a\'+k).U(\'<G N="Q: X; Z: -\'+l+\'D; J: \'+a.J+\'D; M: \'+a.M+\'D;">\'+b.1i()+\'</G>\');B.H(\'.1a\'+k).I({C:0},O).I({C:1},{S:a.S,1m:a.1e});k++}e.11(\'F\');d.V(\'F\');A m=(a.13*a.O);b.I({C:0},m).I({C:0},a.S,K(){$(B).V(\'F\').P({C:1});c.I({C:0},1n,K(){$(B).11(\'F\');f.H(\'.1p\').1o();f.1h()})})},2e:K(a,b,c,d,e){A f=B;B.1g();b.P({C:1});A g=18.19(a.J/a.13);A h=a.M;A j=[];A i=1;T(i<=a.13){A k=(i*g)-g;B.U(\'<G 16="1p 1a\'+i+\'" N="Q: X; 1b: 1c;\'+b.E(\'N\')+\'"></G>\');B.H(\'.1a\'+i).P({Z:k,C:0,M:h,J:g,\'z-1k\':3,\'1l-Q\':\'-\'+k+\'D 12\'});j[(i-1)]=[i];i++}A l=$.1s(j);A m=1;T(m<=a.13){A n=(m*g)-g;A o=(m*a.O);B.H(\'.1a\'+m).U(\'<G N="Q: X; Z: -\'+n+\'D; J: \'+a.J+\'D; M: \'+a.M+\'D;">\'+b.1i()+\'</G>\');B.H(\'.1a\'+l[(m)-1]).I({C:0},o).I({C:1},{S:a.S,1m:a.1e});m++}e.11(\'F\');d.V(\'F\');A p=(a.13*a.O);b.I({C:0},p).I({C:0},a.S,K(){$(B).V(\'F\').P({C:1});c.I({C:0},1n,K(){$(B).11(\'F\');f.H(\'.1p\').1o();f.1h()})})},2a:K(a,b,c,d,e){A f=B;B.1g();b.P({C:1});A g=18.19(a.J/a.R);A h=18.19(a.M/a.14);A i=1;A j=(1);T(i<=a.14){A k=i;A l=\'1t\'+i;T(j<=a.R){A m=\'1j\'+((a.R*i)-(a.R-j));A n=\'1u\'+(k++);A o=\'1C\'+j;A p=((i*h)-h);A q=((j*g)-g);A r=(g*j)-g;A s=(h*i)-h;L(b.E(\'N\')===17){B.U(\'<G 16="1d \'+m+\' \'+n+\' \'+l+\' \'+o+\'" N="Q: X; 1b: 1c;"></G>\')}W{B.U(\'<G 16="\'+m+\' 1d \'+n+\' \'+l+\' \'+o+\'" N="Q: X; 1b: 1c;\'+b.E(\'N\')+\'"></G>\')}B.H(\'.\'+m).P({J:g,M:h,\'z-1k\':4,12:p+\'D\',Z:q+\'D\',C:0,\'1l-Q\':\'-\'+r+\'D -\'+s+\'D\'}).U(\'<G N="Q: X; Z: -\'+r+\'D; 12: -\'+s+\'D; J: \'+a.J+\'D; M: \'+a.M+\'D;">\'+b.1i()+\'</G>\');j++;k++}i++;j=1}i=1;j=1;T(i<=a.14){A t=i;T(j<=a.R){A u=\'.1u\'+(t++);O=(a.O*t);$(u).I({J:g},O).I({C:1},{S:a.S,1m:a.1e});j++;t++}i++;j=1}e.11(\'F\');d.V(\'F\');A v=(O+a.S);b.I({C:0},v).I({C:0},1,K(){$(B).V(\'F\').P({C:1});c.I({C:0},1n,K(){$(B).11(\'F\');f.H(\'.1d\').1o();f.1h()})})},2b:K(a,b,c,d,e){A f=B;B.1g();b.P({C:1});A g=18.19(a.J/a.R);A h=18.19(a.M/a.14);A i=1;A j=1;A k=[];A l=0;T(i<=a.14){A m=i;A n=\'1t\'+i;T(j<=a.R){k[l]=(l+1);l++;A o=\'1j\'+((a.R*i)-(a.R-j));A p=\'1u\'+(m++);A q=\'1C\'+j;A r=((i*h)-h);A s=((j*g)-g);A t=(g*j)-g;A u=(h*i)-h;L(b.E(\'N\')===17){B.U(\'<G 16="\'+o+\' 1d \'+p+\' \'+n+\' \'+q+\'" N="Q: X; 1b: 1c;"></G>\')}W{B.U(\'<G 16="\'+o+\' 1d \'+p+\' \'+n+\' \'+q+\'" N="Q: X; 1b: 1c;\'+b.E(\'N\')+\'"></G>\')}B.H(\'.\'+o).P({J:g,M:h,\'z-1k\':4,12:r+\'D\',Z:s+\'D\',C:0,\'1l-Q\':\'-\'+t+\'D -\'+u+\'D\'}).U(\'<G N="Q: X; Z: -\'+t+\'D; 12: -\'+u+\'D; J: \'+a.J+\'D; M: \'+a.M+\'D;">\'+b.1i()+\'</G>\');j++;m++}i++;j=1}A v=$.1s(k);i=1;j=1;A w=0;T(i<=a.14){A x=i;T(j<=a.R){A y=\'.1j\'+(v[w]);O=(a.O*x);$(y).I({J:g},O).I({C:1},{S:a.S,1m:a.1e});j++;x++;w++}i++;j=1}e.11(\'F\');d.V(\'F\');A z=O+a.S;b.I({C:0},z).I({C:0},1,K(){$(B).V(\'F\').P({C:1});c.I({C:0},1n,K(){$(B).11(\'F\');f.H(\'.1d\').1o();f.1h()})})},2c:K(a,b,c,d,e){A f=B;B.1g();b.P({C:1});A g=18.19(a.J/a.R);A h=18.19(a.M/a.14);A i=1;A j=1;T(i<=a.14){A k=i;A l=\'1t\'+i;T(j<=a.R){A m=\'1j\'+((a.R*i)-(a.R-j));A n=\'1u\'+(k++);A o=\'1C\'+j;A p=(i*h)+1v;A q=(j*g)+1v;A r=(g*j)-g;A s=(h*i)-h;L(b.E(\'N\')===17){B.U(\'<G 16="\'+m+\' 1d \'+n+\' \'+l+\' \'+o+\'" N="Q: X; 1b: 1c;"></G>\')}W{B.U(\'<G 16="\'+m+\' 1d \'+n+\' \'+l+\' \'+o+\'" N="Q: X; 1b: 1c;\'+b.E(\'N\')+\'"></G>\')}B.H(\'.\'+m).P({J:g,M:h,\'z-1k\':4,C:0,12:p+\'D\',Z:q+\'D\',\'1l-Q\':\'-\'+r+\'D -\'+s+\'D\'}).U(\'<G N="Q: X; Z: -\'+r+\'D; 12: -\'+s+\'D; J: \'+a.J+\'D; M: \'+a.M+\'D;">\'+b.1i()+\'</G>\');j++;k++}i++;j=1}i=1;j=1;T(i<=a.14){A t=i;T(j<=a.R){A u=\'1j\'+((a.R*i)-(a.R-j));A v=((i*h)-h)+\'D\';A w=((j*g)-g)+\'D\';O=(a.O*t);B.H(\'.\'+u).I({J:g},O).I({C:1,12:v,Z:w},{S:a.S,1m:a.1e});j++;t++}i++;j=1}e.11(\'F\');d.V(\'F\');A x=O+a.S;b.I({C:0},x).I({C:0},1,K(){$(B).V(\'F\').P({C:1});c.I({C:0},1n,K(){$(B).11(\'F\');f.H(\'.1d\').1o();f.1h()})})},2f:K(a,b,c,d,e){A f=B;B.1g();A g=18.19(a.J/a.R);A h=18.19(a.M/a.14);A i=1;A j=1;T(i<=a.14){A k=i;A l=\'1t\'+i;T(j<=a.R){A m=\'1j\'+((a.R*i)-(a.R-j));A n=\'1u\'+(k++);A o=\'1C\'+j;A p=((i*h)-h);A q=((j*g)-g);A r=(g*j)-g;A s=(h*i)-h;L(b.E(\'N\')===17){B.U(\'<G 16="\'+m+\' 1d \'+n+\' \'+l+\' \'+o+\'" N="Q: X; 1b: 1c;"></G>\')}W{B.U(\'<G 16="\'+m+\' 1d \'+n+\' \'+l+\' \'+o+\'" N="Q: X; 1b: 1c;\'+c.E(\'N\')+\'"></G>\')}B.H(\'.\'+m).P({J:g,M:h,\'z-1k\':4,12:p+\'D\',Z:q+\'D\',C:1,\'1l-Q\':\'-\'+r+\'D -\'+s+\'D\'}).U(\'<G N="Q: X; Z: -\'+r+\'D; 12: -\'+s+\'D; J: \'+a.J+\'D; M: \'+a.M+\'D;">\'+c.1i()+\'</G>\');j++;k++}i++;j=1}b.V(\'F\').P({C:0}).I({C:1},1n);c.P({C:0});i=1;j=1;T(i<=a.14){A t=i;T(j<=a.R){A u=\'1j\'+((a.R*i)-(a.R-j));O=(a.O*t)*3;A v=(((g*j)-g)+1v)+\'D\';A w=(((h*i)-h)+1v)+\'D\';B.H(\'.\'+u).I({J:g},O).I({Z:v,12:w,C:0},{S:a.S,1m:a.1e});j++;t++}i++;j=1}e.11(\'F\');d.V(\'F\');A x=(O+a.S);b.I({C:1},x).I({C:0},1,K(){$(B).V(\'F\').P({C:1});c.11(\'F\').P({C:1});f.H(\'.1d\').1o();f.1h()})},2g:K(a,b,c,d,e){A f=B;B.1g();A g=18.19(a.J/a.R);A h=18.19(a.M/a.14);A i=1;A j=1;T(i<=a.14){A k=i;A l=\'1t\'+i;T(j<=a.R){A m=\'1j\'+((a.R*i)-(a.R-j));A n=\'1u\'+(k++);A o=\'1C\'+j;A p=((i*h)-h);A q=((j*g)-g);A r=(g*j)-g;A s=(h*i)-h;L(b.E(\'N\')===17){B.U(\'<G 16="\'+m+\' 1d \'+n+\' \'+l+\' \'+o+\'" N="Q: X; 1b: 1c;"></G>\')}W{B.U(\'<G 16="\'+m+\' 1d \'+n+\' \'+l+\' \'+o+\'" N="Q: X; 1b: 1c;\'+c.E(\'N\')+\'"></G>\')}B.H(\'.\'+m).P({J:g,M:h,\'z-1k\':4,12:p+\'D\',Z:q+\'D\',C:1,\'1l-Q\':\'-\'+r+\'D -\'+s+\'D\'}).U(\'<G N="Q: X; Z: -\'+r+\'D; 12: -\'+s+\'D; J: \'+a.J+\'D; M: \'+a.M+\'D;">\'+c.1i()+\'</G>\');j++;k++}i++;j=1}b.V(\'F\').P({C:0}).I({C:1},1n);c.P({C:0});i=1;j=1;T(i<=a.14){A t=i;T(j<=a.R){A u=\'1j\'+((a.R*i)-(a.R-j));O=(a.O*t)*2;A v=(((g*j)-g)-1v)+\'D\';A w=(((h*i)-h)-1v)+\'D\';B.H(\'.\'+u).I({J:g},O).I({Z:v,12:w,C:0},{S:a.S,1m:a.1e});j++;t++}i++;j=1}e.11(\'F\');d.V(\'F\');A x=(O+a.S);b.I({C:1},x).I({C:0},1,K(){$(B).V(\'F\').P({C:1});c.11(\'F\').P({C:1});f.H(\'.1d\').1o();f.1h()})},2h:K(a,b,c,d,e){A f=B;B.1g();b.P({C:1});A g=a.J;A h=18.19(a.M/a.14);A i=1;A j=1;T(i<=a.14){A k=\'1t\'+i;A l=\'1j\'+j;A m=(h*i)-h;A n=a.J+\'D\';A o=((i*h)-h);L(b.E(\'N\')===17){B.U(\'<G 16="1G \'+l+\' \'+k+\'" N="Q: X; 1b: 1c;"></G>\')}W{B.U(\'<G 16="\'+l+\' 1G \'+k+\'" N="Q: X; 1b: 1c;\'+b.E(\'N\')+\'"></G>\')}B.H(\'.\'+l).P({J:g,M:h,\'z-1k\':4,12:o+\'D\',C:0,\'1l-Q\':\'0 -\'+m+\'D\',Z:n}).U(\'<G N="Q: X; 12: -\'+m+\'D; J: \'+a.J+\'D; M: \'+a.M+\'D;">\'+b.1i()+\'</G>\');j++;i++}A p=\'-\'+a.J+\'D\';B.H(\'.1G:2t\').P({Z:p});i=1;A q=1;T(i<=a.14){A r=\'.1j\'+q;O=(a.O*q);$(r).I({C:0},O).I({Z:0,C:1},{S:a.S,1m:a.1e});i++;q++}e.11(\'F\');d.V(\'F\');A s=(O+a.S);b.I({C:0},s).I({C:0},1,K(){$(B).V(\'F\').P({C:1});c.I({C:0},1n,K(){$(B).11(\'F\');f.H(\'.1G\').1o();f.1h()})})},1g:K(){1q=21},1h:K(){1q=1w}});$.1Z.1s=K(){1Y B.23(K(){A a=$(B).H();1Y(a.1B)?$(B).1i($.1s(a)):B})};$.1s=K(a){2u(A j,x,i=a.1B;i;j=2v(18.1y()*i,10),x=a[--i],a[i]=a[j],a[j]=x){}1Y a}})(2w);', 62, 157, '||||||||||||||||||||||||||||||||||||var|this|opacity|px|attr|current|div|children|animate|width|function|if|height|style|delay|css|position|columns|duration|while|append|addClass|else|absolute|li|left||removeClass|top|bars|rows||class|undefined|Math|round|slider_bar_|overflow|hidden|slider_block|ease|selector|disableSelectors|enableSelectors|html|block_ID_|index|background|easing|200|remove|slider_bar|isPlaying|nextSlide|shuffle|block_row_|slider_block_|80|false|trans|random|waitTime|stopSlide|length|block_column_|prevSlide|next|nextTransition|slider_row|first|sel_|stopAll|click|split|fading|barTop|barBottom|square|squareMoving|barFade|barFadeRandom|squareRandom|squareOut|squareOutMoving|rowInterlaced|DDFading|return|fn|500|true|ul|each|slider_|callSlide|prev|last|DDBarTop|DDBarBottom|DDSquare|DDSquareRandom|DDSquareMoving|DDBarFade|DDBarFadeRandom|DDSquareOut|DDSquareOutMoving|DDRowInterlaced|extend|DDSlider|50|5000|swing|arguments|slider_selector|_|hover|setInterval|stop|even|for|parseInt|jQuery'.split('|'), 0, {}))



/* *************************************************************************************************** */


