/* Copyright (c) 2010 Brandon Aaron (http://brandonaaron.net)
 * Licensed under the MIT License (LICENSE.txt).
 *
 * Thanks to: http://adomas.org/javascript-mouse-wheel/ for some pointers.
 * Thanks to: Mathias Bank(http://www.mathias-bank.de) for a scope bug fix.
 * Thanks to: Seamus Leahy for adding deltaX and deltaY
 *
 * Version: 3.0.4
 *
 * Requires: 1.2.2+
 */
(function(c){var a=["DOMMouseScroll","mousewheel"];c.event.special.mousewheel={setup:function(){if(this.addEventListener){for(var d=a.length;d;){this.addEventListener(a[--d],b,false)}}else{this.onmousewheel=b}},teardown:function(){if(this.removeEventListener){for(var d=a.length;d;){this.removeEventListener(a[--d],b,false)}}else{this.onmousewheel=null}}};c.fn.extend({mousewheel:function(d){return d?this.bind("mousewheel",d):this.trigger("mousewheel")},unmousewheel:function(d){return this.unbind("mousewheel",d)}});function b(i){var g=i||window.event,f=[].slice.call(arguments,1),j=0,h=true,e=0,d=0;i=c.event.fix(g);i.type="mousewheel";if(i.wheelDelta){j=i.wheelDelta/120}if(i.detail){j=-i.detail/3}d=j;if(g.axis!==undefined&&g.axis===g.HORIZONTAL_AXIS){d=0;e=-1*j}if(g.wheelDeltaY!==undefined){d=g.wheelDeltaY/120}if(g.wheelDeltaX!==undefined){e=-1*g.wheelDeltaX/120}f.unshift(i,j,e,d);return c.event.handle.apply(this,f)}})(jQuery);

/*
 * 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; var s=p/4; }
		else var 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; var s=p/4; }
		else var 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; var s=p/4; }
		else var 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. 
 *
 */




/*
 * Sliding Tabs 1.1.5 jQuery Plugin - http://codecanyon.net/item/sliding-tabs-jquery-plugin/141774
 * 
 * Copyright 2011, Christian AndrŽ
 * All rights reserved.
 *
 * You need to purchase a license if you want to use this script.
 * http://codecanyon.net/wiki/buying/howto-buying/licensing/
 *
 */
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}('(3($){$.1C.2n=3(b){F c={P:l,1D:2o,1i:l,1j:0,V:\'1E\',1k:\'2p\',1F:\'2q\',1G:\'2r\',1H:\'2s\',1l:\'2t\',x:\'2u\',1I:\'2v\',1m:\'2w\',1J:\'2x\',W:\'2y\',1K:\'2z\',1n:\'1L\',Q:2A,14:\'2B\',I:0,R:0,X:\'15\',1M:l,1o:2C,1p:\'\',1N:8,p:0,Y:0,Z:0,1O:8},1P=$.2D(8,{},c,b);g 5.19(3(){F a=2E 1Q($(5),1P);a.10()})};3 1Q(c,d){F e=c.n(\'.\'+d.1I),$6=e.n(\'.\'+d.1m),$a=$6.s(\'7\').n(\'a\'),$B=c.n(\'.\'+d.1K),$o=$B.n(\'.\'+d.1J).h(\'2F\',\'2G\'),$q=c.n(\'.\'+d.1G).u(3(){6[d.V+\'2H\'](2);g l}),$r=c.n(\'.\'+d.1F).u(3(){6[d.V+\'2I\'](2);g l}),$t,$k=[],$7,$11,$C,$J,2={},i=0;5.10=3(){4(d.X==\'15\'){2.K=\'L\';2.y=\'1a\';2.v=\'1R\'}9{2.K=\'S\';2.y=\'1b\';2.v=\'1S\';2.1q=$q.S();2.1r=$r.S();(2.1q>=2.1r)?2.1s=2.1q:2.1s=2.1r}4(d.Z>0){f.M()}4(d.Y>0){f.m()}6.10();4(d.P==8){P.10()}};F f={M:3(){F a=($B.L()-$B.M());c.h(\'M\',d.Z+\'N\');4(d.X==\'15\'){F b=($q.L(\'8\')+$r.L(\'8\')),1T=(e.L()-e.M());e.h(\'M\',((d.Z-b)-1T)+\'N\');$B.h(\'M\',(d.Z-a)+\'N\')}9{$B.h(\'M\',((d.Z-e.L())-a)+\'N\')}},m:3(){F a=($B.S()-$B.m());c.h(\'m\',d.Y+\'N\');4(d.X==\'2J\'){F b=(e.S()-e.m());e.h(\'m\',(d.Y-b)+\'N\');$B.h(\'m\',(d.Y-a)+\'N\')}9{$B.h(\'m\',((d.Y-e.S())-a)+\'N\')}}},6={G:\'#\'+c.v(\'16\')+\' .\'+d.1m+\':G\',10:3(){5.1U();5.1V();5.1W()},1U:3(){4(d.p==0){4(d.X==\'15\'){d.p=e.L()}9{d.p=(e.m()-2.1s)}}},1W:3(){$6.2K(\'7 a.\'+d.1l,\'u\',3(){4($(o.G).w){g l}6.u(5);g l});4($.1C.1X&&d.1N==8){$6.1X(3(a,b){(b>0)?6.1Y(2):6.1Z(2);g l})}$(\'a.\'+d.1H).19(3(){4($(5).v(\'20\')==c.v(\'16\')){$(5).u(3(){$t=6.1t($(5).v(\'21\').22(1));6.u($t);g l})}})},1V:3(){5.23();o.24();$11=$6.s(\'7:25\');$t=$k;$k=$k.T(\'7\');4(($11[2.K](8)+$11.D()[2.y])>d.p){2.z=$k[2.K](8);2.j=$k.D()[2.y];4(2.j>d.p){i+=(2.z+(2.j-d.p));i=(i+d.I)}9 4((2.j+2.z)>d.p){i+=(2.z-(d.p-2.j));i=(i+d.I)}9{i=(i-d.R)}$6.h(2.v,-+i);5.26();5.27()}},26:3(){4(d.V==\'1E\'){4($6.s("7:1u").D()[2.y]==(0+d.R)){5.17($q)}9{5.E($q)}4(($11.D()[2.y]+$11[2.K](8))==(d.p-d.I)){5.17($r)}9{5.E($r)}}9{5.18()}},E:3(a){a.1c(d.1k)},17:3(a){a.U(d.1k)},27:3(){$q.1v();$r.1v()},u:3(a){$t=$(a);4($t.2L(d.x)){g l}$7=$t.T(\'7\');5.28();4(d.P==8){2.O=$t.T().O();P.1d()}2.j=$7.D();2.29=$k.D();2.H=5.2a($t);5.2b(2);$J=$o.s(\'1e.\'+d.W).1c(d.W);$C=$o.s(\'1e#\'+2.H).U(d.W);4(d.1i==8){o.2c()}4(d.1n.w>0){o[d.1n](2)}9{$J.2d();$C.1v()}},2M:3(){4($(o.G).w){g l}2.$1w=5.n(\'q\');4(2.$1w.w){5.u(2.$1w)}},2N:3(){4($(o.G).w){g l}2.$1x=5.n(\'r\');4(2.$1x.w){5.u(2.$1x)}},n:3(a){g $t.T()[a]().s(\'a.\'+d.1l)},1t:3(a){g $6.n(\'[20=\'+a+\']\')},2a:3(a){2.H=a.v(\'H\');4(2.H){g 2.H}9{g a.2O(\'H\')}},23:3(){4(d.1O==8&&2e.H){$k=5.1t(2e.H.22(1))}4(!$k.w){4($.1y){F a=$.1y(c.v(\'16\'))}4(a){5.1z();$k=$a.2P(a).U(d.x)}9{$k=$6.s(\'7\').n(\'.\'+d.x);4(!$k.w){$k=$6.n(\'a:1u\').U(d.x)}}}9{5.1z();$k.U(d.x)}5.1A($k)},1z:3(){$6.s(\'7\').n(\'.\'+d.x).1c(d.x)},28:3(){$k=$6.s(\'7\').n(\'a.\'+d.x).1c(d.x);$t.U(d.x);5.1A($t)},1A:3(a){4(d.1M==8){$.1y(c.v(\'16\'),a.T(\'7\').O())}},2b:3(a){a.j=a.j[a.y];a.z=$7[a.K](8);a.2f=($7.r().w==1)?$7.r().D()[a.y]:0;4(a.j<(0+d.R)){a.12=(a.z-a.2f);i=(i-(a.12+d.R));5.E($r)}9 4((a.z+a.j)>(d.p-d.I)){i+=(a.z-(d.p-(a.j+d.I)));5.E($q)}5.A();5.18()},1Y:3(a){4($(6.G).w){g l}$6.s(\'7\').19(3(){$7=$(5);a.j=$7.D()[a.y];4(a.j>=(0+d.R)){a.12=($7.q()[a.K](8)-a.j);i=((i-a.12)-d.R);$7=$7.q();6.A();6.18($r);g l}})},1Z:3(a){4($(6.G).w){g l}$6.s(\'7\').19(3(){$7=$(5);a.z=$7[a.K](8);a.j=$7.D()[a.y];4((a.z+a.j)>(d.p-d.I)){a.12=(d.p-a.j);i+=((a.z-a.12)+d.I);6.A();6.18($q);g l}})},A:3(){4(d.X==\'15\'){$6.A({\'1R\':-+i},d.1o,d.1p)}9{$6.A({\'1S\':-+i},d.1o,d.1p)}},18:3(a){4(d.V==\'u\'){$7=$t.T(\'7\')}4($7.2g(\':1u-2h\')){5.17($q);5.E($r)}9 4($7.2g(\':25-2h\')){5.17($r);5.E($q)}9{4(a){5.E(a)}9 4(d.V==\'u\'){5.E($q);5.E($r)}}}},o={G:\'#\'+c.v(\'16\')+\' :G\',24:3(){$C=$o.s($k.v(\'21\')).U(d.W);$o.s(\'1e\').h(\'D\',\'2Q\').2R(\'1e.\'+d.W).2d();4(d.1i==8){$o.h(\'m\',$C.m()).T().h(\'m\',\'2S\')}},2c:3(){4(d.1j>0){$o.A({\'m\':$C.m()},d.1j)}9{$o.h(\'m\',$C.m())}},2T:3(){$J.2U(d.Q,3(){$C.2V(d.Q)})},1L:3(a){a.13=c.L(8);5.1B(a);$J.A({\'1a\':a.1f},d.Q,d.14);$C.h({\'1g\':\'2i\',\'1a\':a.1h}).A({\'1a\':\'2j\'},d.Q,d.14,3(){$J.h(\'1g\',\'2k\')})},2W:3(a){a.13=c.S(8);5.1B(a);$J.A({\'1b\':a.1f},d.Q,d.14);$C.h({\'1g\':\'2i\',\'1b\':a.1h}).A({\'1b\':\'2j\'},d.Q,d.14,3(){$J.h(\'1g\',\'2k\')})},1B:3(a){4(a.j>a.29[a.y]){a.1f=-a.13;a.1h=a.13}9{a.1f=a.13;a.1h=-a.13}}},P={10:3(){2.O=0;5.1d()},1d:3(){2X(2.2l);2.2l=1d(3(){P.2m()},d.1D)},2m:3(){2.O++;4(2.O==$a.w){2.O=0}$($a[2.O]).2Y(\'u\')}}}})(2Z);',62,186,'||val|function|if|this|tabs|li|true|else|||||||return|css|margin|elemP|activeTab|false|height|find|content|tabsSlideLength|prev|next|children|tab|click|attr|length|classTabActive|obj|elemD|animate|contentCont|view|position|enableButton|var|animated|hash|offsetBR|activeView|func|outerWidth|width|px|index|autoplay|contentAnimTime|offsetTL|outerHeight|parent|addClass|buttonsFunction|classViewActive|orientation|totalHeight|totalWidth|init|lastElem|elemHidden|wh|contentEasing|horizontal|id|disableButton|setButtonState|each|left|top|removeClass|setInterval|div|animVal|display|cssVal|autoHeight|autoHeightTime|classBtnDisabled|classTab|classTabsList|contentAnim|tabsAnimTime|tabsEasing|prevBtnH|nextBtnH|buttonsH|findByRel|first|show|prevTab|nextTab|cookie|removeActive|saveActive|setSlideValues|fn|autoplayInterval|slide|classBtnNext|classBtnPrev|classExtLink|classTabsContainer|classView|classViewContainer|slideH|tabSaveState|tabsScroll|urlLinking|conf|SlideTabs|marginLeft|marginTop|tabsContOW|setSlideLength|posActive|bind|mousewheel|slidePrev|slideNext|rel|href|slice|getActive|showActive|last|initButtons|showButtons|setActive|activeElemP|getHash|slideClicked|adjustHeight|hide|location|nextElemPos|is|child|block|0px|none|intervalId|play|slideTabs|4000|st_btn_disabled|st_next|st_prev|st_ext|st_tab|st_tab_active|st_tabs_container|st_tabs|st_view|st_active_view|st_view_container|600|easeInOutExpo|300|extend|new|overflow|hidden|Prev|Next|vertical|delegate|hasClass|clickPrev|clickNext|prop|eq|absolute|not|auto|fade|fadeOut|fadeIn|slideV|clearInterval|trigger|jQuery'.split('|'),0,{})) 

  
  
$(document).ready(function() {
  				
  		// Horizontal Sliding Tabs demo
  		$('div#st_horizontal').slideTabs({  			
			// Options  			
			contentAnim: 'slideH',
			contentAnimTime: 600,
			orientation: 'horizontal',
			tabsAnimTime: 300,
			autoHeight: true,
  		});		  		  		
  	
  	});	
