var dnnJscriptVersion="6.0.0";if(typeof(Sys.Browser.Chrome)=="undefined"){Sys.Browser.Chrome={};if(navigator.userAgent.indexOf(" Chrome/")>-1){Sys.Browser.agent=Sys.Browser.Chrome;Sys.Browser.version=parseFloat(navigator.userAgent.match(/Chrome\/(\d+\.\d+)/)[1]);Sys.Browser.name="Chrome";Sys.Browser.hasDebuggerStatement=true}}else{if(Sys.Browser.agent===Sys.Browser.InternetExplorer&&Sys.Browser.version>10){HTMLAnchorElement.prototype.attachEvent=function(a,b){if(a.substr(0,2)=="on"){a=a.substr(2)}this.addEventListener(a,b,false)};HTMLAnchorElement.prototype.detachEvent=function(a,b){if(a.substr(0,2)=="on"){a=a.substr(2)}this.removeEventListener(a,b,false)}}}var DNN_HIGHLIGHT_COLOR="#9999FF";var COL_DELIMITER=String.fromCharCode(18);var ROW_DELIMITER=String.fromCharCode(17);var QUOTE_REPLACEMENT=String.fromCharCode(19);var KEY_LEFT_ARROW=37;var KEY_UP_ARROW=38;var KEY_RIGHT_ARROW=39;var KEY_DOWN_ARROW=40;var KEY_RETURN=13;var KEY_ESCAPE=27;Type.registerNamespace("dnn");dnn.extend=function(a,b){for(s in b){a[s]=b[s]}return a};dnn.extend(dnn,{apiversion:new Number("04.02"),pns:"",ns:"dnn",diagnostics:null,vars:null,dependencies:new Array(),isLoaded:false,delay:[],_delayedSet:null,getVars:function(){if(this.vars==null){var a=dnn.dom.getById("__dnnVariable");if(a!=null){if(a.value.indexOf("`")==0){a.value=a.value.substring(1).replace(/`/g,'"')}if(a.value.indexOf("__scdoff")!=-1){COL_DELIMITER="~|~";ROW_DELIMITER="~`~";QUOTE_REPLACEMENT="~!~"}}if(a!=null&&a.value.length>0){this.vars=Sys.Serialization.JavaScriptSerializer.deserialize(a.value)}else{this.vars=[]}}return this.vars},getVar:function(key,def){if(this.getVars()[key]!=null){var re=new RegExp(QUOTE_REPLACEMENT,"g");return this.getVars()[key].replace(re,'"')}return def},setVar:function(b,c){if(this.vars==null){this.getVars()}this.vars[b]=c;var a=dnn.dom.getById("__dnnVariable");if(a==null){a=dnn.dom.createElement("INPUT");a.type="hidden";a.id="__dnnVariable";dnn.dom.appendChild(dnn.dom.getByTagName("body")[0],a)}if(dnn.isLoaded){a.value=Sys.Serialization.JavaScriptSerializer.serialize(this.vars)}else{dnn._delayedSet={key:b,val:c}}return true},callPostBack:function(action){var postBack=dnn.getVar("__dnn_postBack");var data="";if(postBack.length>0){data+=action;for(var i=1;i").replace(/"/g,'"')},encode:function(a,c){var b=a;if(encodeURIComponent){b=encodeURIComponent(b)}else{b=escape(b)}if(c==false){return b}return b.replace(/%/g,"%25")},encodeHTML:function(a){return a.toString().replace(/&/g,"&").replace(//g,">").replace(/'/g,"'").replace(/\"/g,""")},encodeJSON:function(a){return a.toString().replace(/&/g,"&").replace(//g,">").replace(/'/g,"\u0027").replace(/\"/g,""").replace(/\\/g,"\\\\")},evalJSON:function(a){return Sys.Serialization.JavaScriptSerializer.deserialize(a)},escapeForEval:function(a){return a.replace(/\\/g,"\\\\").replace(/\'/g,"\\'").replace(/\r/g,"").replace(/\n/g,"\\n").replace(/\./,"\\.")},getEnumByValue:function(a,b){for(var c in a){if(typeof(a[c])=="number"&&a[c]==b){return c}}},_onload:function(){dnn.isLoaded=true;if(dnn._delayedSet){dnn.setVar(dnn._delayedSet.key,dnn._delayedSet.val)}},addIframeMask:function(c){if(dnn.dom.browser.isType("ie")&&(c.previousSibling==null||c.previousSibling.nodeName.toLowerCase()!="iframe")){var a=document.createElement("iframe");c.parentNode.insertBefore(a,c);var b=c.getBoundingClientRect();a.style.position="absolute";a.style.left=c.offsetLeft+"px";a.style.top=c.offsetTop+"px";a.style.width=(b.right-b.left)+"px";a.style.height=(b.bottom-b.top)+"px";a.style.opacity="0";a.style.filter="progid:DXImageTransform.Microsoft.Alpha(opacity=0)";a.style.zIndex="-1";return a}return null},removeIframeMask:function(a){if(dnn.dom.browser.isType("ie")&&(a.previousSibling!=null&&a.previousSibling.nodeName.toLowerCase()=="iframe")){a.parentNode.removeChild(a.previousSibling)}}});dnn.delayObject=function(c,a,b){this.num=null;this.pfunc=c;this.context=a;this.type=b};dnn.delayObject.prototype={complete:function(){dnn.delay[this.type]=null;this.pfunc(this.context)}};dnn.delayObject.registerClass("dnn.delayObject");dnn.ScriptRequest=function(e,d,c){this.ctl=null;this.xmlhttp=null;this.src=null;this.text=null;if(e!=null&&e.length>0){var b=dnn.dom.scriptFile(e);var a=dnn.getVar(b+".resx","");if(a.length>0){this.src=a}else{this.src=e}}if(d!=null&&d.length>0){this.text=d}this.callBack=c;this.status="init";this.timeOut=5000;this._xmlhttpStatusChangeDelegate=dnn.createDelegate(this,this.xmlhttpStatusChange);this._statusChangeDelegate=dnn.createDelegate(this,this.statusChange);this._completeDelegate=dnn.createDelegate(this,this.complete);this._reloadDelegate=dnn.createDelegate(this,this.reload)};dnn.ScriptRequest.prototype={load:function(){this.status="loading";this.ctl=document.createElement("script");this.ctl.type="text/javascript";if(this.src!=null){if(dnn.dom.browser.isType(dnn.dom.browser.Safari)){this.xmlhttp=new XMLHttpRequest();this.xmlhttp.open("GET",this.src,true);this.xmlhttp.onreadystatechange=this._xmlhttpStatusChangeDelegate;this.xmlhttp.send(null);return}else{if(dnn.dom.browser.isType(dnn.dom.browser.InternetExplorer)){this.ctl.onreadystatechange=this._statusChangeDelegate}else{if(dnn.dom.browser.isType(dnn.dom.browser.Opera)==false){this.ctl.onload=this._completeDelegate}}this.ctl.src=this.src}dnn.dom.scriptElements[this.src]=this.ctl}else{if(dnn.dom.browser.isType(dnn.dom.browser.Safari)){this.ctl.innerHTML=dnn.encodeHTML(this.text)}else{this.ctl.text=this.text}}var a=dnn.dom.getByTagName("HEAD");if(a){if(dnn.dom.browser.isType(dnn.dom.browser.Opera)==false||this.src!=null){a[0].appendChild(this.ctl)}}else{alert("Cannot load dynamic script, no HEAD tag present.")}if(this.src==null||dnn.dom.browser.isType(dnn.dom.browser.Opera)){this.complete()}else{if(this.timeOut){dnn.doDelay("loadScript_"+this.src,this.timeOut,this._reloadDelegate,null)}}},xmlhttpStatusChange:function(){if(this.xmlhttp.readyState!=4){return}this.src=null;this.text=this.xmlhttp.responseText;this.load()},statusChange:function(){if((this.ctl.readyState=="loaded"||this.ctl.readyState=="complete")&&this.status!="complete"){this.complete()}},reload:function(){if(dnn.dom.scriptStatus(this.src)=="complete"){this.complete()}else{this.load()}},complete:function(){dnn.cancelDelay("loadScript_"+this.src);this.status="complete";if(typeof(this.callBack)!="undefined"){this.callBack(this)}this.dispose()},dispose:function(){this.callBack=null;if(this.ctl){if(this.ctl.onreadystatechange){this.ctl.onreadystatechange=new function(){}}else{if(this.ctl.onload){this.ctl.onload=null}}this.ctl=null}this.xmlhttp=null;this._xmlhttpStatusChangeDelegate=null;this._statusChangeDelegate=null;this._completeDelegate=null;this._reloadDelegate=null}};dnn.ScriptRequest.registerClass("dnn.ScriptRequest");Type.registerNamespace("dnn.dom");dnn.extend(dnn.dom,{pns:"dnn",ns:"dom",browser:null,__leakEvts:[],scripts:[],scriptElements:[],tweens:[],attachEvent:function(a,c,d){if(a.addEventListener){var b=c.substring(2);a.addEventListener(b,function(e){dnn.dom.event=new dnn.dom.eventObject(e,e.target);return d()},false)}else{a.attachEvent(c,function(){dnn.dom.event=new dnn.dom.eventObject(window.event,window.event.srcElement);return d()})}return true},cursorPos:function(b){if(b.value.length==0){return 0}var h=-1;if(b.selectionStart){h=b.selectionStart}else{if(b.createTextRange){var f=window.document.selection.createRange();var a=b.createTextRange();if(a==null||f==null||((f.text!="")&&a.inRange(f)==false)){return-1}if(f.text==""){if(a.boundingLeft==f.boundingLeft){h=0}else{var d=b.tagName.toLowerCase();if(d=="input"){var g=a.text;var c=1;while(c0){b.style.height=(b.offsetHeight-d).toString()+"px";dnn.doDelay(b.id+"col",10,dnn.dom.__collapseElement,a)}else{b.style.display="none";if(a.pfunc!=null){a.pfunc()}}},cancelExpandElement:function(a){dnn.cancelDelay(a.id+"exp");a.style.overflow="";a.style.height=""},disableTextSelect:function(a){if(typeof a.onselectstart!="undefined"){a.onselectstart=function(){return false}}else{if(typeof a.style.MozUserSelect!="undefined"){a.style.MozUserSelect="none"}else{a.onmousedown=function(){return false}}}},expandElement:function(b,c,d){if(c==null){c=10}if(b.style.display=="none"&&b.origHeight==null){b.style.display="";b.style.overflow="";b.origHeight=b.offsetHeight;b.style.overflow="hidden";b.style.height="1px"}b.style.display="";var a=new Object();a.num=c;a.ctl=b;a.pfunc=d;dnn.dom.__expandElement(a)},__expandElement:function(a){var c=a.num;var b=a.ctl;var d=b.origHeight/c;if(b.offsetHeight+d=0;a--){var b=dnn.dom.__leakEvts[a];b.ctl.detachEvent(b.name,b.ptr);b.ctl[b.name]=null;dnn.dom.__leakEvts.length=dnn.dom.__leakEvts.length-1}},getObjMethref:function(b,a){return(function(c){c=c||window.event;return b[a](c,this)})},getSibling:function(a,c){if(a!=null&&a.parentNode!=null){for(var b=0;b-1){this.scriptElements[c]=a[b];return a[b]}}},getScriptSrc:function(b){var a=dnn.getVar(b+".resx","");if(a.length>0){return a}return b},getScriptPath:function(){var a=dnn.dom.getScript("dnn.js");if(a){var b=a.src;if(b.indexOf("?")>-1){b=b.substr(0,b.indexOf("?"))}return b.replace("dnn.js","")}var c=dnn.getVar("__sp");if(c){return c}return""},scriptFile:function(b){var a=b.split("/");return a[a.length-1]},loadScript:function(e,d,b){var c;if(e!=null&&e.length>0){c=this.scriptFile(e);if(this.scripts[c]!=null){return}}var a=new dnn.ScriptRequest(e,d,b);if(c){this.scripts[c]=a}a.load();return a},loadScripts:function(a,b,c){if(dnn.scripts==null){var e=function(f,g,h){return(function(){dnn.dom.loadScripts(f,g,h)})};dnn.dom.loadScript(dnn.dom.getScriptPath()+"dnn.scripts.js",null,e(a,b,c));return}var d=new dnn.scripts.ScriptBatchRequest(a,b,c);d.load()},scriptStatus:function(c){var b=this.scriptFile(c);if(this.scripts[b]){return this.scripts[b].status}var a=this.getScript(c);if(a!=null){return"complete"}else{return""}},setScriptLoaded:function(b){var a=this.scriptFile(b);if(this.scripts[a]&&dnn.dom.scripts[a].status!="complete"){dnn.dom.scripts[a].complete()}},navigate:function(b,a){if(a!=null&&a.length>0){if(a=="_blank"||a=="_new"){window.open(b)}else{document.frames[a].location.href=b}}else{if(Sys.Browser.agent===Sys.Browser.InternetExplorer){window.navigate(b)}else{window.location.href=b}}return false},setCookie:function(b,f,h,e,d,c,a){var g;if(h){g=new Date();g.setTime(g.getTime()+(h*24*60*60*1000))}if(a){g=new Date();g.setTime(g.getTime()+(a))}document.cookie=b+"="+escape(f)+((g)?"; expires="+g.toGMTString():"")+((e)?"; path="+e:"")+((d)?"; domain="+d:"")+((c)?"; secure":"");if(document.cookie.length>0){return true}},getCurrentStyle:function(b,c){var a=Sys.UI.DomElement._getCurrentStyle(b);if(a){return a[c]}return""},getFormPostString:function(a){var c="";if(a!=null){if(a.tagName&&a.tagName.toLowerCase()=="form"){for(var b=0;b-1){var e=o.jQuery("#iPopUp"),i=e.dialog("option","refresh"),t=e.dialog("option","closingUrl"),n=e.dialog("option","minWidth"),a=e.dialog("option","minHeight"),r=e.dialog("option","showReturn");t||(t=location.href),!0===e.dialog("isOpen")&&e.dialog("option",{close:function(o,e){dnnModal.refreshPopup({url:t,width:n,height:a,showReturn:r,refresh:i})}}).dialog("close")}else o.jQuery("#iPopUp").dialog({autoOpen:!1,title:document.title})}return!1}catch(o){return!0}},show:function(n,a,r,l,d,s){var p=e("#iPopUp");p.length&&(p[0].src="about:blank",p.remove()),p=e(''),e(document.body).append(p),e(document).find("html").css("overflow","hidden");for(var c=document.styleSheets,h=!1,m=0,g=c.length;m-1){h=!0;break}}var f=!h&&(e(o).width()<481||t);f?e("html").addClass("mobileView"):e("html").removeClass("mobileView");var w=0,b=function(){p.prev(".dnnLoading").remove()},v=function(){p.on("load",function(){b();var e=document.getElementById("iPopUp"),t=o.location.hostname.toLowerCase(),a=o.location.port.toLowerCase(),r=i(n),l=r.host.toLowerCase(),d=r.port.toLowerCase();if(l=l||t,d=d||a,t===l&&a===d)try{if(f){var s=e.contentDocument.body,c=e.contentDocument.documentElement;c.style.width=w+"px",s.className+="mobileView dnnFormPopup dnnFormPopupMobileView";var h=Math.max(s.scrollHeight,s.offsetHeight,c.clientHeight,c.scrollHeight,c.offsetHeight);p.css("height",h+100).dialog("option","position",{my:"top",at:"top"})}e.contentWindow.dnnModal.show=function(o,e,i,t,n,a){var r=parent.jQuery("#iPopUp");a||(a=location.href),r.dialog("isOpen")&&r.dialog("option",{close:function(){parent.dnnModal.show(o,e,i,t,n,a)}}).dialog("close")}}catch(o){}}),p[0].src=n,"function"==typeof e.ui.dialog.prototype.options.open&&e.ui.dialog.prototype.options.open.apply(this,arguments)};if(f){w=e(o).width()-100;var y=e("body").css("height");p.dialog({modal:!0,autoOpen:!0,dialogClass:"dnnFormPopup dnnFormPopupMobileView",resizable:!1,closeOnEscape:!0,refresh:d,showReturn:a,closingUrl:s,minHeight:r,position:{my:"top",at:"top"},draggable:!1,open:function(){e("#Form").hide(),e("body").css("height","auto"),p.parent().css({width:"auto",left:"0",right:"0",top:"0","box-shadow":"none"}),o.scrollTo(0,0),v()},close:function(){e("#Form").show(),y&&e("body").css("height",y),o.scrollTo(0,0),o.dnnModal.closePopUp(d,s)}})}else if(p.dialog({modal:!0,autoOpen:!0,dialogClass:"dnnFormPopup",position:{my:"center",at:"center"},minWidth:l,minHeight:r,maxWidth:1920,maxHeight:1080,resizable:!0,closeOnEscape:!0,refresh:d,showReturn:a,closingUrl:s,open:v,close:function(){o.dnnModal.closePopUp(d,s)}}).width(l-11).height(r-11),0===p.parent().find(".ui-dialog-title").next("a.dnnModalCtrl").length){var k=e('');p.parent().find(".ui-dialog-titlebar-close").wrap(k);var x=e('Max');p.parent().find(".ui-dialog-titlebar-close").before(x),x.click(function(i){i.preventDefault();var t,n,a=e(o),r="center",l="center",d=0,s=0;if(e("button.ui-dialog-titlebar-close").length&&(s=e("button.ui-dialog-titlebar-close").parent(".dnnModalCtrl").height(),d=e("button.ui-dialog-titlebar-close").parent(".dnnModalCtrl").width()),p.data("isMaximized")){var c=p.data("height")+100;c>=a.height()&&(c=p.data("height")),t=c-s,n=p.data("width"),p.data("isMaximized",!1)}else{p.data("height",p.dialog("option","minHeight")).data("width",p.dialog("option","minWidth"));var h=0;e("#personaBar-iframe").length&&(h=e("#personaBar-iframe").width()),n=a.outerWidth()-h-d/7.5-40,t=a.height()-s,r="right-"+d/5.5+" center",l="right center-"+s/11,p.data("isMaximized",!0)}p.dialog("option","height",t),p.dialog("option","width",n),p.dialog("option","position",{my:r,at:l,of:o})})}if(function(){var o=e('
');o.css({width:p.width(),height:p.height()}),p.before(o)}(),"true"===a.toString())return!1},closePopUp:function(o,i){var t=parent,n=t.jQuery("#iPopUp");void 0!==o&&null!=o||(o=!0),"true"==o.toString()?(void 0!==i&&""!=i||(i=t.location.href),t.location.href=i,n.hide()):n.dialog("option","close",null).dialog("close"),e(t.document).find("html").css("overflow","")},refreshPopup:function(o){var e=parent,i=e.parent;e.location.href!==i.location.href&&e.location.href!==o.url?i.dnnModal.show(o.url,o.showReturn,o.height,o.width,o.refresh,o.closingUrl):dnnModal.closePopUp(o.refresh,o.url)}},o.dnnModal.load()}(window,jQuery); ;;;//TabsPlugin.js---------------------------- // Easy Responsive Tabs Plugin // Author: Samson.Onna (function(e) { e.fn.extend({ easyResponsiveTabsPro: function(t) { var n = { type: "default", width: "auto", fit: !0, closed: !1, activate: function() {} }, t = e.extend(n, t), r = t, i = r.type, s = r.fit, o = r.width, u = "vertical", a = "accordion", f = window.location.hash, l = !!window.history && !!history.replaceState; e(this).bind("tabactivate", function(e, n) { typeof t.activate == "function" && t.activate.call(n, e) }), this.each(function() { function c() { i == u && n.addClass("resp-vtabs"), s == 1 && n.css({ width: "100%", margin: "0px" }), i == a && (n.addClass("resp-easy-accordion"), n.find(".resp-tabs-list").css("display", "none")) } var n = e(this), r = n.find("ul.resp-tabs-list"), l = n.attr("id"), id=n.data("id"); n.find("ul.resp-tabs-list li").addClass("resp-tab-item"), n.css({ display: "block", width: o }), n.find(".resp-tabs-container > div").addClass("resp-tab-content"), c(); var h; n.find(".resp-tab-content").before(""); var p = 0; n.find(".resp-accordion").each(function() { h = e(this); var t = n.find(".resp-tab-item:eq(" + p + ")"), r = n.find(".resp-accordion:eq(" + p + ")"); r.append(t.html()), r.data(t.data()), h.attr("aria-controls", "tab_item-" +id +"-"+ p), p++ }); var d = 0, v; n.find(".resp-tab-item").each(function() { $tabItem = e(this), $tabItem.attr("aria-controls", "tab_item-" +id +"-"+ d), $tabItem.attr("role", "tab"); var t = 0; n.find(".resp-tab-content").each(function() { v = e(this), v.attr("aria-labelledby", "tab_item-" +id +"-"+ t), t++ }), d++ }); var m = 0; if (f != "") { var g = f.match(new RegExp(l + "([0-9]+)")); g !== null && g.length === 2 && (m = parseInt(g[1], 10) - 1, m > d && (m = 0)) } e(n.find(".resp-tab-item")[m]).addClass("resp-tab-active"), t.closed === !0 || t.closed === "accordion" && !r.is(":visible") || t.closed === "tabs" && !!r.is(":visible") ? e(n.find(".resp-tab-content")[m]).addClass("resp-tab-content-active resp-accordion-closed") : (e(n.find(".resp-accordion")[m]).addClass("resp-tab-active"), e(n.find(".resp-tab-content")[m]).addClass("resp-tab-content-active").attr("style", "display:block")), n.find("[role=tab]").each(function() { var t = e(this); t.click(function() { var tc=$(this); if ($(this).hasClass("resp-tab-active")){return false}; var t = e(this), r = t.attr("aria-controls"); if (t.hasClass("resp-accordion") && t.hasClass("resp-tab-active")) return n.find(".resp-tab-content-active").hide(200, function() { e(this).addClass("resp-accordion-closed") }), t.removeClass("resp-tab-active"), !1; ! t.hasClass("resp-tab-active") && t.hasClass("resp-accordion") ? (n.find(".resp-tab-active").removeClass("resp-tab-active"), n.find(".resp-tab-content-active").hide(200).removeClass("resp-tab-content-active resp-accordion-closed"), n.find("[aria-controls=" + r + "]").addClass("resp-tab-active"), n.find(".resp-tab-content[aria-labelledby = " + r + "]").show(200,function() {if(tc.offset().top < $(window).scrollTop()){jQuery('body,html').stop().animate({scrollTop: tc.offset().top},200)}}).addClass("resp-tab-content-active")) : (n.find(".resp-tab-active").removeClass("resp-tab-active"), n.find(".resp-tab-content-active").removeAttr("style").removeClass("resp-tab-content-active").removeClass("resp-accordion-closed"), n.find("[aria-controls=" + r + "]").addClass("resp-tab-active"), n.find(".resp-tab-content[aria-labelledby = " + r + "]").addClass("resp-tab-content-active").fadeIn(400)), t.trigger("tabactivate", t) }) }), e(window).resize(function() { n.find(".resp-accordion-closed").removeAttr("style") }) }) } }) })(jQuery), $(document).ready(function() { $(".pro-tab_Top").easyResponsiveTabsPro({ type: "vertical", width: "auto", fit: !0 }), $(".pro-tab_Bottom").easyResponsiveTabsPro({ type: "vertical", width: "auto", fit: !0 }), $(".pro-tab_Left").easyResponsiveTabsPro({ type: "vertical", width: "auto", fit: !0 }), $(".pro-tab_Right").easyResponsiveTabsPro({ type: "vertical", width: "auto", fit: !0 }) }); (function($) { $.fn.OpenTab = function() { var url = window.location.search, e = $(this); if (url.indexOf("?") != -1) { var str = url.substr(1) strs = str.split("&"); for (i = 0; i < strs.length; i++) { if (e.attr("id") == strs[i].split("=")[0]) { var info = strs[i].split("=")[1] e.find(".resp-tabs-list .resp-tab-item").eq(info - 1).addClass("resp-tab-active").siblings(".resp-tab-item").removeClass("resp-tab-active"); e.find(".resp-tabs-container .resp-accordion").eq(info - 1).addClass("resp-tab-active").siblings(".resp-accordion").removeClass("resp-tab-active"); e.find(".resp-tabs-container .resp-tab-content").eq(info - 1).addClass("resp-tab-content-active").show().siblings(".resp-tab-content").removeClass("resp-tab-content-active").hide(); } } } } })(jQuery); $(document).ready(function() { $(".pro-tab_Top,.pro-tab_Right,.pro-tab_Bottom,.pro-tab_Left").each(function() { $(this).OpenTab(); }); }) $(document).ready(function() { $(".pro-tab_Left,.pro-tab_Right").each(function() { var e = $(this); e.find(".resp_margin").css("min-height", e.find(".resp-tabs-list").height()) }); }) ;;;!function(n){"function"==typeof define&&define.amd?define(["jquery"],function(e){return n(e)}):"object"==typeof module&&"object"==typeof module.exports?exports=n(require("jquery")):n(jQuery)}(function(n){function e(n){var e=7.5625,t=2.75;return n<1/t?e*n*n:n<2/t?e*(n-=1.5/t)*n+.75:n<2.5/t?e*(n-=2.25/t)*n+.9375:e*(n-=2.625/t)*n+.984375}void 0!==n.easing&&(n.easing.jswing=n.easing.swing);var t=Math.pow,u=Math.sqrt,r=Math.sin,i=Math.cos,a=Math.PI,c=1.70158,o=1.525*c,s=2*a/3,f=2*a/4.5;n.extend(n.easing,{def:"easeOutQuad",swing:function(e){return n.easing[n.easing.def](e)},easeInQuad:function(n){return n*n},easeOutQuad:function(n){return 1-(1-n)*(1-n)},easeInOutQuad:function(n){return n<.5?2*n*n:1-t(-2*n+2,2)/2},easeInCubic:function(n){return n*n*n},easeOutCubic:function(n){return 1-t(1-n,3)},easeInOutCubic:function(n){return n<.5?4*n*n*n:1-t(-2*n+2,3)/2},easeInQuart:function(n){return n*n*n*n},easeOutQuart:function(n){return 1-t(1-n,4)},easeInOutQuart:function(n){return n<.5?8*n*n*n*n:1-t(-2*n+2,4)/2},easeInQuint:function(n){return n*n*n*n*n},easeOutQuint:function(n){return 1-t(1-n,5)},easeInOutQuint:function(n){return n<.5?16*n*n*n*n*n:1-t(-2*n+2,5)/2},easeInSine:function(n){return 1-i(n*a/2)},easeOutSine:function(n){return r(n*a/2)},easeInOutSine:function(n){return-(i(a*n)-1)/2},easeInExpo:function(n){return 0===n?0:t(2,10*n-10)},easeOutExpo:function(n){return 1===n?1:1-t(2,-10*n)},easeInOutExpo:function(n){return 0===n?0:1===n?1:n<.5?t(2,20*n-10)/2:(2-t(2,-20*n+10))/2},easeInCirc:function(n){return 1-u(1-t(n,2))},easeOutCirc:function(n){return u(1-t(n-1,2))},easeInOutCirc:function(n){return n<.5?(1-u(1-t(2*n,2)))/2:(u(1-t(-2*n+2,2))+1)/2},easeInElastic:function(n){return 0===n?0:1===n?1:-t(2,10*n-10)*r((10*n-10.75)*s)},easeOutElastic:function(n){return 0===n?0:1===n?1:t(2,-10*n)*r((10*n-.75)*s)+1},easeInOutElastic:function(n){return 0===n?0:1===n?1:n<.5?-(t(2,20*n-10)*r((20*n-11.125)*f))/2:t(2,-20*n+10)*r((20*n-11.125)*f)/2+1},easeInBack:function(n){return(c+1)*n*n*n-c*n*n},easeOutBack:function(n){return 1+(c+1)*t(n-1,3)+c*t(n-1,2)},easeInOutBack:function(n){return n<.5?t(2*n,2)*(7.189819*n-o)/2:(t(2*n-2,2)*((o+1)*(2*n-2)+o)+2)/2},easeInBounce:function(n){return 1-e(1-n)},easeOutBounce:e,easeInOutBounce:function(n){return n<.5?(1-e(1-2*n))/2:(1+e(2*n-1))/2}})}); ;;;/* Translucent - Responsive Banner Rotator / Slider | v1.4.2 | Updated:17 SEP 2012 | (c) 2011-12 Ramesh Kumar | http://codecanyon.net/user/VF */ (function (e, f, h) { var d = { slide_autoplay: true, slide_delaytime: 5, slide_transition: 1, slide_transition_period: 800, slide_preload_images: 1, slide_random_order: false, image_align_center: true, image_resize: true, image_resize_to_fit: false, navigation_type: 1, button_size: 20, button_size_touch_device: 28, button_margin: 4, button_opacity: 0.7, button_space: 2, button_color: "#FFFFFF", button_show_next: true, button_show_back: false, button_show_timer: true, button_show_numbers: true, button_numbers_autohide: true, button_numbers_horizontal: false, dot_button_size: 14, dot_button_space: 10, dot_button_margin: 10, dot_button_dark: false, dot_button_bg_blur: true, dot_button_bg_padding: 8, caption_float_mode: false, caption_bg_blur: 12, caption_padding_x: 24, caption_padding_y: 12, caption_margin_x: 0, caption_margin_y: 0, caption_position_x: 50, caption_position_y: 100, caption_width: 300, caption_height: "", caption_bg_color: "#FFFFFF", caption_bg_opacity: 0.08, caption_bg_radius: 6, caption_bg_shadow: 0.3, caption_border: 1, caption_border_color: "#FFFFFF", caption_border_opacity: 0.15, caption_allow_selection: false, mouse_drag: true, touch_swipe: true, touch_dragdrop_factor: 60, touch_throw_factor: 5, responsive: true, responsive_limit_autoplay: "", responsive_limit_caption: 480, responsive_limit_navigation: 480, responsive_limit_navigation_type: 2, responsive_screen_based_limits: false }; function i(k, t, q) { var p = this; var r = this.sett = e.extend({}, d, t); this.instanceID = q; this.$cont = k; this.$children = this.$cont.find(".Slide"); if (r.slide_random_order) { this.shuffle(this.$children) } this.maxW = this.$cont.css("max-width"); if (this.maxW.indexOf("%") < 0) { this.maxW = parseInt(this.maxW) } else { this.maxW = false } this.bW = this.$cont.width(); this.oH = parseInt(this.$cont.css("height")); this.ratio = (this.maxW || this.bW) / this.oH; this.bH = this.getHeight(); this.FF2 = false; this.IE8 = false; this.canvasSupport = !!h.createElement("canvas").getContext; this.touchDevice = "ontouchstart" in f; this.slides = []; this.slide_tot = this.$children.length; this.slide_dir = -1; this.slide_sel = 0; this.slide_pr1 = ""; this.slide_pr2 = ""; this.slide_fin = false; this.slide_drg = false; this.slide_sta = true; this.clockDraw; this.clockContext; this.clockStart; this.clockDiff = 0; this.clockTimer = r.button_show_timer; this.clockPlaying = false; this.buttonNext = r.button_show_next; this.buttonBack = r.button_show_back; this.buttonNumber = r.button_show_numbers; this.buttonIE = this.IE8 ? 1 : 0; this.buttonLeaveTimer; this.navHolder; this.draggable = ((this.touchDevice && r.touch_swipe) || (!this.touchDevice && r.mouse_drag)) ? true : false; this.dragged = false; this.numShow = false; this.moved = 0; this.timerob = e('
'); this.regxHost = new RegExp("^(?:f|ht)tp(?:s)?://([^/]+)", "im"); if (this.touchDevice) { this.downEvent = "touchstart"; this.upEvent = "touchend"; this.moveEvent = "touchmove" } else { this.downEvent = "mousedown"; this.upEvent = "mouseup"; this.moveEvent = "mousemove" } this.dotButtonBlurBG = false; var n = ["move", "fade", "slideIn", "slideOut"]; if (r.slide_transition < 1 || isNaN(r.slide_transition)) { r.slide_transition = 1 } else { if (r.slide_transition > n.length) { r.slide_transition = n.length } } r.slide_transition = n[r.slide_transition - 1]; if (r.caption_margin_y == 0 && !r.caption_float_mode) { r.caption_bg_radius = 0 } if (r.button_show_numbers && !r.button_show_next) { r.button_numbers_autohide = false } if (r.navigation_type < 1) { r.navigation_type = 1 } else { if (r.navigation_type > 3) { r.navigation_type = 3 } } if (r.responsive_limit_navigation_type < 1) { r.responsive_limit_navigation_type = 1 } else { if (r.responsive_limit_navigation_type > 3) { r.responsive_limit_navigation_type = 3 } } if (r.responsive_limit_navigation_type == "" || (r.navigation_type > 1 && r.responsive_limit_navigation_type === 1)) { r.responsive_limit_navigation_type = r.navigation_type } if (this.touchDevice) { r.button_size = Math.max(r.button_size, r.button_size_touch_device) } this.icSize = 60; this.icOff = r.button_size > 26 ? this.icSize * 4 : 0; if (r.dot_button_dark) { this.icDotOff = -this.icSize * (11 + 0.5) + ((r.dot_button_size + r.dot_button_space) / 2) } else { this.icDotOff = -this.icSize * (8 + 0.5) + ((r.dot_button_size + r.dot_button_space) / 2) } // if (e.browser.webkit) { // this.shProp = "-webkit-box-shadow" // } else { // if (e.browser.mozilla && this.$cont.css("box-shadow") != "none") { // this.shProp = "-moz-box-shadow" // } else { this.shProp = "box-shadow" // } // } this.blurIteration = this.touchDevice ? 1 : 2; this.enableCaption = (r.responsive && this.checkLimit(r.responsive_limit_caption, false)) ? false : true; this.currentNav = (r.responsive && this.checkLimit(r.responsive_limit_navigation, false)) ? r.responsive_limit_navigation_type : r.navigation_type; this.autoPlaying = (r.responsive && this.checkLimit(r.responsive_limit_autoplay, false)) ? false : r.slide_autoplay; var l = /url\(["']?([^'")]+)['"]?\)/; var o = e('
').appendTo(this.$cont); this.icons = e(".icon").css("background-image").replace(l, "$1"); this.imgList = [{ src: this.icons, loaded: false }, { src: this.$children.eq(0).find("img").attr("src"), loaded: false }]; for (var m = 1; m < Math.min(r.slide_preload_images, this.slide_tot); m++) { this.imgList.push({ src: this.$children.eq(m).find("img").attr("src"), loaded: false }) } this.timer_sprite = this.canvasSupport || o.addClass("timer_sprite").css("background-image").replace(l, "$1"); o.remove(); e.each(this.imgList, function (u) { var s = new Image(); e(s).bind("load", { id: u, self: p }, p.loadComplete).bind("error", { id: u, self: p }, p.loadComplete); s.src = p.imgList[u].src }) } i.prototype = { loadComplete: function (n) { var l = n.data.self, k = true; l.imgList[n.data.id].loaded = true; for (var m = 0; m < l.imgList.length; m++) { if (!l.imgList[m].loaded) { k = false } } if (k) { l.init() } }, init: function () { var y = this, v = y.sett, o = "0px 0px 6px rgba(0, 0, 0, ", D = y.$children.find("div")[0], m, x, E, w, t, p, n, k, u, z, B, A; y.blurIE = Math.max((v.caption_bg_blur / 3), 3); var q = 0; if (v.button_show_next) { q++ } if (v.button_show_back) { q++ } if (v.button_show_timer) { q++ } if (v.button_numbers_horizontal && !v.button_numbers_autohide) { q += y.slide_tot } y.navWidth = q * (v.button_size + v.button_space); for (var C = 0; C < y.slide_tot; C++) { x = y.$children.eq(C).css({ "z-index": y.slide_tot - C, visibility: "visible" }); E = x.find("img").attr("galleryimg", "no").addClass("noSelect"); if (!D && v.navigation_type == 2 && v.dot_button_bg_blur && v.dot_button_margin > -1) { y.dotButtonBlurBG = true; y.sett.caption_float_mode = true; y.updateFloatSettings(); w = e("
"); x.append(w) } else { w = x.find("div") } y.slides.push({ src: E.attr("src"), scale: 1, ox: "", oy: "", con: x, img: E, txt: w[0] ? w : false, loaded: false, butt: "", z: y.slide_tot - C, delay: (x.data("delay") || v.slide_delaytime) * 1000, pd: x.data("position"), wd: x.data("width"), hd: x.data("height") }); if (w[0]) { w.css({ left: v.caption_padding_x, top: v.caption_padding_y, display: "none" }).wrapInner(e("").css("opacity", 0.99)); if (v.caption_allow_selection) { w.bind("mousedown", function (s) { s.stopImmediatePropagation() }) } else { w.addClass("noSelect").attr("unselectable", "on") } t = e('
'); e.extend(y.slides[C], { cap: t, txtCont: t.find(".txtCont") }); n = x.data("caption_bg_shadow") || v.caption_bg_shadow; k = "-moz-border-radius: " + v.caption_bg_radius + "px; -webkit-border-radius: " + v.caption_bg_radius + "px; border-radius: " + v.caption_bg_radius + "px; -khtml-border-radius: " + v.caption_bg_radius + "px;"; if (v.caption_bg_blur > 0) { if (y.IE8) { m = e('
'); if (v.caption_margin_y <= v.caption_bg_blur / 2 && !v.caption_float_mode) { m.append('
') } } else { if (!y.FF2) { m = e('') } } } else { if (n > 0 && !y.FF2) { m = e('
') } } u = x.data("caption_bg_color") || v.caption_bg_color; z = x.data("caption_bg_opacity") || v.caption_bg_opacity; B = e('
').css("opacity", z); if (v.caption_border) { A = e('
').css("opacity", v.caption_border_opacity) } if (n > 0 && !y.FF2) { m.css(y.shProp, (o + n + ")")) } t.append(m).append(B).append(A); y.slides[C].txtCont.append(w); x.append(t); y.slides[C].bord = A; y.slides[C].col = B; y.slides[C].can = m } x.hide().bind(y.downEvent, { id: C, self: y }, y.startDrag) } y.imageLoad(0); for (var C = 1; C < y.slide_tot; C++) { var l = new Image(); y.slides[C].img.hide(); e(l).bind("load", { id: C, self: y }, y.imageLoad); l.src = y.slides[C].src } if (y.draggable) { var r = y.$cont.find("a"); r.each(function () { var s = e(this); s.bind("click", { l: s.attr("href"), t: s.attr("target") }, function (F) { F.stopImmediatePropagation(); F.preventDefault(); if (!y.slide_drg) { e(h).unbind(".TransBannerDrag_" + y.instanceID); f.open(F.data.l, F.data.t ? F.data.t.toLowerCase() : "_self") } else { y.slide_drg = false } return false }); if (s.find("img").length < 1) { s.bind("mousedown", function (F) { F.preventDefault(); return false }) } }) } if (v.responsive) { e(f).bind("resize", function (s) { y.blurIteration = 1; y.resizeBanner({ internal: true }) }) } }, imageLoad: function (l) { var k, m; if (l.data) { k = l.data.self; m = l.data.id } else { k = this; m = l } k.slides[m].imgW = k.slides[m].img[0].width; k.slides[m].imgH = k.slides[m].img[0].height; k.resizeImage(m); if (k.slides[m].txt) { k.updateText(m) } if (!k.IE8 && !k.FF2 && k.sett.caption_bg_blur > 0 && k.slides[m].txt) { k.createBlur(m, true) } else { k.showSlide(m) } }, resizeImage: function (p) { var m = this, o = m.sett, k = m.slides, l, n; if (o.image_resize) { k[p].scale = m.bW / k[p].imgW; if ((k[p].scale * k[p].imgH <= m.bH && !o.image_resize_to_fit) || (k[p].scale * k[p].imgH >= m.bH && o.image_resize_to_fit)) { k[p].scale = m.bH / k[p].imgH; k[p].img.height(m.bH); k[p].img.width(k[p].imgW * k[p].scale); l = k[p].imgW * k[p].scale; n = m.bH } else { k[p].img.width(m.bW); k[p].img.height(k[p].imgH * k[p].scale); l = m.bW; n = k[p].imgH * k[p].scale } if (o.image_align_center) { m.alignCenter(p) } if (m.IE8) { e(k[p].can).find("img").each(function () { this.width = l; this.height = n }) } } else { if (o.image_align_center) { m.alignCenter(p) } } }, alignCenter: function (k) { this.slides[k].ox = (this.bW - (this.slides[k].imgW * this.slides[k].scale)) / 2; this.slides[k].oy = (this.bH - (this.slides[k].imgH * this.slides[k].scale)) / 2; this.slides[k].img.css({ left: this.slides[k].ox, top: this.slides[k].oy }) }, createBlur: function (o, l) { var m = this, k = m.slides[o], n = m.getHostName(k.src); if (n && n !== h.domain) { e.getImageData({ url: k.src, success: function (p) { g(p, k.cx, k.cy, k.cw, k.ch, k.scale, k.ox, k.oy, k.can[0], m.sett.caption_bg_blur, false, m.blurIteration); if (l) { m.showSlide(o) } }, error: function (q, p) { if (l) { m.showSlide(o) } } }) } else { g(k.img[0], k.cx, k.cy, k.cw, k.ch, k.scale, k.ox, k.oy, k.can[0], m.sett.caption_bg_blur, false, m.blurIteration); if (l) { m.showSlide(o) } } }, showSlide: function (k) { this.slides[k].con.css("background-image", "none"); this.slides[k].loaded = true; if (k == this.slide_sel) { this.slides[k].img.fadeIn(400) } else { this.slides[k].img.show() } if (k == 0) { this[this.sett.slide_transition](); if (this.sett.button_show_next || this.sett.button_show_back || this.sett.button_show_timer || this.sett.button_show_numbers) { this.setNavigation() } } }, getHostName: function (k) { var l = k.match(this.regxHost); if (l !== null) { return l[1].toString() } else { return false } }, updateFloatSettings: function () { this.sett.caption_position_x = ((this.bW - ((this.sett.dot_button_size + this.sett.dot_button_space) * this.slide_tot) + this.sett.dot_button_space) / 2) - this.sett.dot_button_bg_padding; this.sett.caption_position_y = this.bH - this.sett.dot_button_margin - (this.sett.dot_button_bg_padding * 2) - this.sett.dot_button_size; this.sett.caption_width = ((this.sett.dot_button_size + this.sett.dot_button_space) * this.slide_tot) - this.sett.dot_button_space + (this.sett.dot_button_bg_padding * 2); this.sett.caption_height = this.sett.dot_button_size + this.sett.dot_button_bg_padding * 2; this.sett.caption_bg_radius = this.sett.caption_height }, getHeight: function () { var l = this, k; if (!l.sett.responsive) { return l.$cont.height() } if (l.maxW) { if (l.bW < l.maxW) { k = l.bW / l.ratio } else { k = l.oH } l.$cont.height(k) } else { if (l.$cont.css("max-width").indexOf("%") < 0) { k = l.bW / l.ratio; l.$cont.height(k) } else { k = l.$cont.height() } } return Math.max(20, k) }, checkLimit: function (m, l) { var k; if (m) { k = (this.sett.responsive_screen_based_limits || l) ? Math.max(screen.width, screen.height) : this.bW; return (k <= parseInt(m) ? true : false) } else { return false } }, updateText: function (w) { var v = this, r = v.sett, C = v.slides, u = v.slides[w].con, E = v.slides[w].img, t = v.slides[w].txt, p = v.slides[w].cap, m = v.slides[w].txtCont, A = v.slides[w].bord, B = v.slides[w].col, k = v.slides[w].can, y, x, z, F, D = v.slides[w].pd, o = v.slides[w].wd, n = v.slides[w].hd, q; if (r.caption_float_mode) { if (v.dotButtonBlurBG) { v.updateFloatSettings() } if (D && !v.dotButtonBlurBG) { y = parseInt(D.split(",")[0], 10); x = parseInt(D.split(",")[1], 10) } else { y = r.caption_position_x; x = r.caption_position_y } if (o && !v.dotButtonBlurBG) { z = parseInt(o, 10) } else { z = r.caption_width } if (y == v.maxW - z) { y = v.bW - z } else { if (v.maxW && !v.dotButtonBlurBG) { y *= v.bW / v.maxW; x *= v.bW / v.maxW } } if (y + z + r.caption_margin_x > v.bW) { z = v.bW - y - r.caption_margin_x } t.width((z - (r.caption_padding_x * 2))); if (n && !v.dotButtonBlurBG) { F = parseInt(n, 10) } else { if (r.caption_height == "") { F = v.getHiddenTextHeight(u, p, t) + (r.caption_padding_y * 2) } else { F = r.caption_height } } if (x + F + r.caption_margin_y > v.bH) { F = v.bH - x - r.caption_margin_y } t.height(r.caption_height == "" ? "auto" : F); p.css({ left: y, top: x, width: z, height: F }) } else { p.css({ left: r.caption_padding_x, width: v.bW - ((r.caption_padding_x + r.caption_margin_x) * 2) - (v.currentNav > 1 ? 0 : v.navWidth) }); t.width(v.bW - ((r.caption_padding_x + r.caption_margin_x) * 2) - (v.currentNav > 1 ? 0 : v.navWidth)); q = Math.min(v.getHiddenTextHeight(u, p, t) + (r.caption_padding_y * 2), v.bH - (r.caption_margin_y * 2)); y = r.caption_margin_x; x = v.bH - q - r.caption_margin_y; z = v.bW - (r.caption_margin_x * 2); F = q; t.width(z - (v.currentNav > 1 ? 0 : v.navWidth) - (r.caption_padding_x * 2)); p.css({ left: y, width: z, height: F }) } m.css({ width: z, height: F }); var l = u.data("caption_bg_shadow") || r.caption_bg_shadow; e.extend(v.slides[w], { cx: y, cy: x, cw: z, ch: F, tx: r.caption_padding_x + y, ty: r.caption_padding_y + x, tw: t.width() }); if (r.caption_bg_blur > 0) { if (v.IE8) { k.css({ width: z - 1, height: F - 1 }); k.find("div").css({ width: z + (r.caption_bg_blur * 2), height: F + (r.caption_bg_blur * 2) }); e(C[w].can).find("img").each(function () { e(this).css({ left: C[w].ox - y + (r.caption_bg_blur), top: C[w].oy - x + (r.caption_bg_blur / 2) }) }); if (r.caption_margin_y <= r.caption_bg_blur / 2 && !r.caption_float_mode) { k.find(".TBinner").css({ width: z + (v.blurIE * 2), height: F + (v.blurIE * 2) }).find("img").css({ left: -y + (v.blurIE), top: -x + (v.blurIE) }) } } else { v.createBlur(w, false) } } else { if (l > 0 && !v.FF2) { k.css({ width: z, height: F }) } } B.css({ width: z, height: F }); if (r.caption_border) { A.css({ width: z - (r.caption_border * 2), height: F - (r.caption_border * 2) }) } }, getHiddenTextHeight: function (p, n, k) { var o = []; if (p.css("display") == "none") { o.push(p.css("display", "block")) } if (n.css("display") == "none") { o.push(n.css("display", "block")) } if (k.css("display") == "none") { o.push(k.css("display", "block")) } var l = k.height(); for (var m = 0; m < o.length; m++) { o[m].css("display", "none") } return l }, shuffle: function (k) { var m, n; for (var l = 0; l < k.length; l++) { m = Math.floor(Math.random() * k.length); n = k[l]; k[l] = k[m]; k[m] = n } }, startDrag: function (l) { var k = l.data.self, o = l.data.id, n = l.pageX || l.originalEvent.changedTouches[0].pageX, m = l.pageY || l.originalEvent.changedTouches[0].pageY; k.ch = 0, k.p = 0; if (k.currentNav < 3 && k.sett.button_numbers_autohide) { k.checkDropDown(false, false) } if (k.buttonNext[0]) { k.buttonNext.trigger("mouseout", { self: k, num: "next", butt: k.buttonNext }) } if (l.type == "mousedown") { l.preventDefault() } if (!k.draggable || k.slide_drg || !k.slide_fin) { return } if (k.sett.slide_transition !== "move") { k.slides[o].con.css(k.shProp, "0px 0px 45px 0px #000000") } k.slide_drg = false; e(h).unbind(".TransBannerDrag_" + k.instanceID).bind(k.moveEvent + ".TransBannerDrag_" + k.instanceID, { self: k, id: l.data.id, sx: n, sy: m }, k.onDragMove).bind(k.upEvent + ".TransBannerDrag_" + k.instanceID, { self: k, id: l.data.id, sx: n, sy: m }, k.onDragUp) }, dragTransComplete: function (k) { k.slide_fin = true; k.slide_drg = false; if (k.sett.button_show_numbers && this.currentNav < 3) { k.toggleButton(true) } else { k.timerReset(true) } if (k.slides[k.n].txt) { if (!k.dotButtonBlurBG) { k.slides[k.n].cap.hide() } if (k.sett.caption_float_mode) { k.slides[k.n].cap.css("left", (k.IE8 || k.dotButtonBlurBG) ? k.slides[k.n].cx : k.slides[k.n].cx + (100 * -k.slide_dir)) } } if (k.slides[k.n].txt && k.enableCaption) { k.animateCaption() } if (k.autoPlaying) { k.startDelayTimer() } }, onDragMove: function (n) { var k = n.data.self, m = k.sett, q = n.data.id, p = n.data.sx, o = n.data.sy, l; if (k.touchDevice) { l = n.originalEvent.changedTouches[0].pageX; if ((n.originalEvent.touches.length > 1 || Math.abs(l - p) < Math.abs(n.originalEvent.changedTouches[0].pageY - o) / 2) && !k.slide_drg) { k.slide_drg = false; e(h).unbind(".TransBannerDrag_" + k.instanceID); return } } else { l = n.pageX } k.ch = l - k.p; k.p = l; k.pos = l - p; if (k.pos > k.bW) { k.pos = k.bW } if (k.pos < -k.bW) { k.pos = -k.bW } if (!k.slide_drg) { k.dragFir = k.pos } else { if ((k.dragFir > 0 && k.pos < 0) || (k.dragFir < 0 && k.pos > 0)) { k.pos = k.dragFir = 0; k.slide_drg = false } } k.n = k.slide_sel + (k.pos > 0 ? -1 : 1); if (k.n < 0) { k.n = k.slide_tot - 1 } else { if (k.n > k.slide_tot - 1) { k.n = 0 } } if (k.slides[k.n].txt && !k.dotButtonBlurBG) { k.slides[k.n].cap.hide() } k.slide_pr1 = k.n; k.zSort(2, 1); if (k.clockPlaying) { k.clockPlaying = false; k.timerob.stop(); k.timerReset(true) } if (k.slide_drg && k.pos == 0) { k.slide_drg = false; k.slides[q].con.css("left", 0); k.slides[k.n].con.css("left", 0) } else { k.slide_drg = true; k.slides[q].con.css("left", k.pos); k.slides[k.n].con.css("left", (m.slide_transition == "move" ? k.pos + (k.pos > 0 ? -k.bW : k.bW) : 0)); k.slides[k.n].con.show() } n.preventDefault(); return false }, onDragUp: function (p) { var l = p.data.self, n = l.sett, r = p.data.id, q = p.data.sx, k = n.slide_transition == "move"; e(h).unbind(".TransBannerDrag_" + l.instanceID); if (l.slide_drg) { var m = 0; var o = l.slides[r].con.position().left; if (o > n.touch_dragdrop_factor) { m = 1 } else { if (o < -n.touch_dragdrop_factor) { m = -1 } } if (!l.IE8) { if (l.ch > n.touch_throw_factor) { m = o < 0 ? 0 : 1 } else { if (l.ch < -n.touch_throw_factor) { m = o > 0 ? 0 : -1 } } } if (m !== 0) { l.dragged = true; l.slide_dir = m; l.slide_fin = false; l.slide_sel = l.n } l.slides[r].con.stop().animate({ left: (l.bW + (k ? 0 : 30)) * m }, { duration: m == 0 ? 400 : Math.max((l.bW - (l.slides[r].con.position().left * m)) / (k ? 1.5 : 0.75), k ? 400 : 600), easing: (k || m == 0) ? "easeOutQuad" : "easeOutQuart", step: function (s) { if (k) { l.slides[l.n].con.css("left", s + (l.pos > 0 ? -l.bW : l.bW)) } }, complete: function () { if (!k) { l.slides[r].con.css(l.shProp, "none") } if (m == 0) { l.slide_drg = false; !l.autoPlaying || l.startDelayTimer() } else { l.dragTransComplete(l) } } }) } return false }, changeSlide: function (k) { this.slide_pr2 = this.slide_pr1; this.slide_pr1 = this.slide_sel; this.dragged = false; if (k == "next") { this.slide_sel = this.slide_sel + 1 > this.slide_tot - 1 ? 0 : this.slide_sel + 1 } else { if (k == "back") { this.slide_sel = this.slide_sel - 1 < 0 ? this.slide_tot - 1 : this.slide_sel - 1 } else { this.slide_sel = k } } this[this.sett.slide_transition]() }, zSort: function (m, l) { var n = 1; for (var k = 0; k < this.slide_tot; k++) { if (k !== this.slide_sel && k !== this.slide_pr1) { if (this.slides[k]) { this.slides[k].con.css("z-index", n); if (this.IE8) { this.slides[k].con.hide() } } n++ } } if (this.slides[this.slide_pr1]) { this.slides[this.slide_pr1].con.css("z-index", this.slide_tot + l) } if (this.slides[this.slide_sel]) { this.slides[this.slide_sel].con.css("z-index", this.slide_tot + m) } }, textOut: function () { var k = this; if (this.slides[this.slide_pr1] && this.sett.slide_transition == "fade") { this.slides[this.slide_pr1].txt.stop(true).animate({ left: -k.slides[k.slide_pr1].cw / 2 }, { duration: 150, easing: "easeOutQuad", queue: false, complete: function () { e(this).hide() } }) } }, textIn: function () { var k = this, l = -k.slide_dir, n = k.IE8 ? "filter" : "opacity", m = k.IE8 ? "none" : 1; if (k.sett.slide_transition == "fade" && !k.dragged) { l = 1 } if (k.slides[k.slide_sel].txt) { k.slides[k.slide_sel].txt.css({ left: k.sett.caption_padding_x + (100 * l), prop: m }).hide().fadeIn(600, function () { if (k.IE8) { e(this).removeAttr("filter").removeAttr("-ms-filter") } }).animate({ left: k.sett.caption_padding_x }, { duration: 800, easing: "easeOutQuart", queue: false }) } }, animateCaption: function () { var k = this, l = this.slide_sel; this.slides[this.slide_sel].txt.hide(); if (this.sett.caption_float_mode) { if (this.IE8 || this.dotButtonBlurBG) { if (!k.dotButtonBlurBG) { this.slides[l].cap.hide().fadeIn({ duration: 300 }) } } else { this.slides[l].cap.hide().fadeIn({ duration: 800, queue: false }).animate({ left: this.slides[l].cx }, { duration: 600 }) } this.textIn() } else { if (this.IE8) { this.slides[l].cap.hide().fadeIn({ duration: 600, complete: function () { k.textIn() }, queue: false }) } else { this.slides[l].cap.hide().fadeIn({ duration: 600, queue: false }).animate({ _: 100 }, { duration: 400, complete: function () { k.textIn() } }) } } }, setNavigation: function () { var k = this; for (var l = 1; l <= 3; l++) { if (((!k.sett.responsive || k.sett.responsive_limit_navigation == "" || !k.checkLimit(k.sett.responsive_limit_navigation, true)) && k.sett.navigation_type === l) || (k.sett.responsive && k.sett.responsive_limit_navigation !== "" && k.sett.responsive_limit_navigation_type === l)) { if (l == 1) { k.navHolder = k.navigation(); k.$cont.prepend(k.navHolder) } else { if (l == 2) { k.navHolderD = k.dotNavigation(); k.$cont.prepend(k.navHolderD) } else { if (l == 3) { k.navHolderA = k.arrowNavigation(); k.$cont.prepend(k.navHolderA) } } } } } k.swapNavigation(false); if (!k.sett.button_numbers_autohide && k.sett.button_show_numbers && k.navHolder) { for (var l = 0; l < k.slide_tot; l++) { k.showHideButton(l, true) } } }, arrowNavigation: function () { var k = this, n = k.sett, m = n.button_size, o = n.button_space, l = e(''); k.buttonNextA = k.addButton(k, l, 4, true, false, "next").css({ left: k.bW - m - n.button_margin, top: (k.bH - m) / 2 }); k.buttonBackA = k.addButton(k, l, 5, true, false, "back").css({ left: n.button_margin, top: (k.bH - m) / 2 }); return l }, dotNavigation: function () { var l = this, p = l.sett, o = p.dot_button_size + p.dot_button_space, q = 0, k = (((o + q) * l.slide_tot) - q) / 2, n = e(''); for (var m = 0; m < l.slide_tot; m++) { l.slides[m].buttS = l.addButton(l, n, 4, false, true, m).css({ left: ((o + q) * m) - k, top: -(p.dot_button_margin > -1 ? o - (p.dot_button_space / 2) + p.dot_button_margin + (l.dotButtonBlurBG ? p.dot_button_bg_padding : 0) : p.dot_button_margin + (p.dot_button_space / 2)) }) } return n }, navigation: function () { var z = this, A = z.sett, p = z.slides, u = z.buttonNext, l = z.buttonBack, t = z.buttonPause, x = z.buttonIE, B = A.button_size, k = A.button_space; nav = z.nav = z; z.currentDown = -1; var w = e(''); if (u || z.buttonNumber) { var v = e('
'); if (A.button_numbers_horizontal) { v.css({ "z-index": 4, position: "absolute", left: -(B + k) * (z.slide_tot + (u ? 1 : 0)) + k, top: -B, width: (B + k) * (z.slide_tot + (u ? 1 : 0)) - k, height: B }) } w.append(v) } if (u) { u = z.buttonNext = z.addButton(nav, v, 4, true, false, "next").css({ left: (A.button_numbers_horizontal ? ((B + k) * z.slide_tot) : 0) - x, top: (A.button_numbers_horizontal ? 0 : ((B + k) * z.slide_tot)) - x }); if (A.button_numbers_autohide && z.buttonNumber) { if (!z.touchDevice) { u.bind("mouseenter", { self: z, up: true }, z.checkDropDown); v.bind("mouseleave", { self: z, up: false }, z.checkDropDown).bind("mouseenter", function (s) { if (z.numShow) { clearTimeout(z.buttonLeaveTimer) } }) } } } if (z.clockTimer) { var q, o; if (z.canvasSupport) { z.clockTimer = e(''); var y = z.clockContext = z.clockTimer[0].getContext("2d"); y.shadowColor = "rgba(0, 0, 0, 0.5)"; y.shadowBlur = 3; y.shadowOffsetX = 0; y.shadowOffsetY = 0; y.lineWidth = B / 10; y.lineCap = "round" } else { z.clockTimer = e('
') } if (A.button_numbers_horizontal && u) { v.append(z.clockTimer) } else { w.append(z.clockTimer) } if (A.button_numbers_horizontal) { if (u) { if (z.buttonNumber && !A.button_numbers_autohide) { q = -(B + k); o = 0 } else { q = (B + k) * (z.slide_tot - 1); o = 0 } } else { if (z.buttonNumber && !A.button_numbers_autohide) { q = -((B + k) * (z.slide_tot + 1)) + k; o = -B } else { q = -B; o = -B - x } } } else { q = -((B * (u || z.buttonNumber ? 2 : 1)) + (u || z.buttonNumber ? k : 0)); o = -B } z.clockTimer.css({ left: q, top: o }); t = z.buttonPause = z.addButton(nav, A.button_numbers_horizontal && u ? v : w, 3, true, false, "pause").css({ left: q - x, top: o - x }); if (z.autoPlaying) { t.css("opacity", 0) } else { z.clockTimer.css("opacity", 0) } if (!z.touchDevice) { t.bind("mouseenter", function (s) { t.stop().animate({ opacity: 1 }, { duration: 400, easing: "easeOutQuad" }) }).bind("mouseleave", function (s) { if (z.autoPlaying) { t.stop().animate({ opacity: 0 }, { duration: 400, easing: "easeOutQuart" }) } }) } } if (l) { var n, m; l = z.buttonBack = z.addButton(nav, A.button_numbers_horizontal && u ? v : w, 1, true, false, "back"); if (A.button_numbers_horizontal) { if (u) { n = (B + k) * (z.slide_tot - (z.clockTimer ? 2 : 1)); m = 0 } else { if (z.clockTimer) { n = parseInt(z.clockTimer.css("left"), 10) - B - k; m = parseInt(z.clockTimer.css("top"), 10) } else { n = -B + x; m = -B } } } else { if (z.clockTimer) { n = (-(B + k) * (u ? 3 : 2)) + k } else { n = -((B * (u || z.buttonNumber ? 2 : 1)) + (u || z.buttonNumber ? k : 0)) } m = -B } l.css({ left: n - x, top: m - x }) } if (z.buttonNumber) { for (var r = 0; r < z.slide_tot; r++) { p[r].butt = z.addButton(nav, v, z.slide_tot - r + 5, false, false, r); if (A.button_numbers_horizontal) { p[r].butt.css({ top: -x, left: ((B + k) * r) - x }) } else { p[r].butt.css({ left: -x, top: ((B + k) * r) - x }) } if (r == z.slide_sel) { p[r].butt.bg.css("opacity", 1) } p[r].butt.hide() } } w.css({ right: A.button_margin - (A.caption_float_mode ? 0 : -A.caption_margin_x), bottom: A.button_margin - (A.caption_float_mode ? 0 : -A.caption_margin_y) }); return w }, swapNavigation: function (k) { e(h).unbind(".TransBannerButtonUp_" + this.instanceID); if (this.currentNav === 1) { if (this.navHolder) { this.navHolder.show() } if (this.navHolderD) { this.navHolderD.hide() } if (this.navHolderA) { this.navHolderA.hide() } } else { if (this.currentNav === 2) { if (this.navHolder) { this.navHolder.hide() } if (this.navHolderD) { this.navHolderD.show() } if (this.navHolderA) { this.navHolderA.hide() } } else { if (this.currentNav === 3) { if (this.navHolder) { this.navHolder.hide() } if (this.navHolderD) { this.navHolderD.hide() } if (this.navHolderA) { this.navHolderA.show() } } } } e(h).bind(this.upEvent + ".TransBannerButtonUp_" + this.instanceID, { self: this }, this.releaseButton); if (this.currentNav < 3) { this.toggleButton(true) } this.timerReset(true); if (this.autoPlaying && k) { this.startDelayTimer() } }, addButton: function (k, t, v, s, l, p) { var w = this, x = l ? w.sett.dot_button_size + w.sett.dot_button_space : w.sett.button_size, o, u, r, n = e('
' + (w.IE8 && !l ? '
' + (s ? "" : ' ' + (p + 1) + "") + "
" : "") + "
" + (l || !w.IE8 ? "" : '
') + "
"), m = n.find(".defaultButton"); if (w.IE8) { o = n.find(".buttonShadow"); u = m.find(".iconHolder"); if (s) { u.css("background-position", (l ? w.icDotOff : (p == "next" ? ((x - w.icSize) / 2) - w.icSize : p == "pause" ? ((x - w.icSize) / 2) - (w.autoPlaying ? w.icSize * 2 : w.icSize * 3) : (x - w.icSize) / 2) - w.icOff) + "px center") } else { if (l) { m.append(l = e('
')) } else { var q = u.find(".buttonText") } } n.append(m, o) } else { if (s || l) { m.css("background-position", (l ? w.icDotOff : (p == "next" ? ((x - w.icSize) / 2) - w.icSize : p == "pause" ? ((x - w.icSize) / 2) - (w.autoPlaying ? w.icSize * 2 : w.icSize * 3) : (x - w.icSize) / 2) - w.icOff) + "px center") } else { r = e('
' + (p + 1) + "
") } if (!l) { m.css(w.shProp, "0px 0px 2px rgba(0, 0, 0, .7)") } n.append(m, r) } if (!l) { m.css("opacity", w.sett.button_opacity) } n.bg = m; n.sh = o; n.ih = u; n.bt = q; n.dot = l; t.append(n); n.bind("mouseenter mouseleave " + w.downEvent, { self: w, num: p, dot: l, btn: n }, w.hoverButton); return n }, hoverButton: function (p) { var l = p.data.self, m = p.data.num, k = p.data.dot, o = p.data.btn, n = k ? l.sett.dot_button_size + l.sett.dot_button_space : l.sett.button_size, q; if (p.type == "mouseenter") { if (k) { if (l.IE8) { o.dot.css("left", l.icDotOff - l.icSize) } else { o.bg.css("background-position", l.icDotOff - l.icSize + "px center") } } else { o.bg.css({ opacity: 1 }) } } else { if (p.type == "mouseleave") { if (m != l.slide_sel) { if (k) { if (l.IE8) { o.dot.css("left", l.icDotOff) } else { o.bg.css("background-position", l.icDotOff + "px center") } } else { o.bg.css("opacity", l.sett.button_opacity) } } } else { p.stopImmediatePropagation(); if (m !== l.slide_sel) { if (k) { if (l.IE8) { o.dot.css("left", l.icDotOff - (l.icSize * 2)) } else { o.bg.css("background-position", (l.icDotOff - (l.icSize * 2)) + "px center") } } else { q = ((n - l.icSize) / 2) - l.icOff - 1; if (m == "next") { q -= l.icSize } else { if (m == "pause" && l.autoPlaying) { q -= l.icSize * 2 } else { if (m == "pause" && !l.autoPlaying) { q -= l.icSize * 3 } } } l.resizeButton(o, l.buttonIE + (k ? 0 : 1), 1, n - 2, q, m == "next" && !l.numShow && l.touchDevice ? l.sett.button_opacity : 1); if (o.bt) { o.bt.css("top", -2) } } l.currentDown = m } if (l.touchDevice && l.currentNav < 3) { if (m == "next" && !l.numShow) { l.checkDropDown(false, true) } else { if (m == "back" || m == "pause" && l.numShow) { l.checkDropDown(false, false) } } } } } }, releaseButton: function (p) { var k = p.data.self, m = (k.currentNav == 2) ? k.sett.dot_button_size + k.sett.dot_button_space : k.sett.button_size, n = k.checkTransitionStatus(), o = (k.currentDown < 0 || k.slide_sel === k.currentDown) ? true : false; if (k.currentDown == "next") { if (n) { k.slide_dir = -1; k.changeSlide("next") } k.resizeButton(k.currentNav == 3 ? k.buttonNextA : k.buttonNext, k.buttonIE, 0, m, (((m - k.icSize) / 2) - k.icSize) - k.icOff, 1) } else { if (k.currentDown == "back") { if (n) { k.slide_dir = 1; k.changeSlide("back") } k.resizeButton(k.currentNav == 3 ? k.buttonBackA : k.buttonBack, k.buttonIE, 0, m, ((m - k.icSize) / 2) - k.icOff, k.touchDevice ? k.sett.button_opacity : 1) } else { if (k.currentDown == "pause") { if (k.autoPlaying) { k.autoPlaying = false; k.buttonPause.css("opacity", 1); k.clockTimer.css("opacity", 0); k.timerReset(true) } else { k.autoPlaying = true; k.buttonPause.stop().animate({ opacity: 0 }, { duration: 400, easing: "easeOutQuart" }); k.clockTimer.css("opacity", 1); k.timerReset(true); k.startDelayTimer() } k.resizeButton(k.buttonPause, k.buttonIE, 0, m, (((m - k.icSize) / 2) - (k.autoPlaying ? k.icSize * 2 : k.icSize * 3)) - k.icOff, k.touchDevice ? k.sett.button_opacity : 1) } else { if (k.currentDown > -1) { if (n && k.slide_sel !== k.currentDown) { if (k.currentDown > k.slide_sel) { k.slide_dir = -1 } else { if (k.currentDown < k.slide_sel) { k.slide_dir = 1 } } k.changeSlide(k.currentDown) } if (k.currentNav !== 2) { var l = k.currentNav === 1 ? k.slides[k.slide_sel].butt : k.slides[k.slide_sel].buttS; if (l.ih) { l.ih.height(m - 2) } if (l.bt) { l.bt.css("top", -1) } } } } } } if (k.currentDown !== "pause" && !o) { if (k.sett.button_show_numbers && k.currentNav < 3) { k.toggleButton(false) } else { k.timerReset(false) } } k.currentDown = -1 }, resizeButton: function (n, o, m, l, q, k, p) { n.bg.css({ opacity: k, left: o, top: o, width: l, height: l, "background-position": q + "px center" }); if (n.sh) { n.sh.css({ left: m, top: m, width: l + 2, height: l + 2 }) } if (n.ih) { n.ih.css({ height: l - 2, "background-position": q + "px center" }) } }, toggleButton: function (k) { var n = (this.currentNav == 2 ? this.sett.dot_button_size + this.sett.dot_button_space : this.sett.button_size); for (var m = 0, l; m < this.slide_tot; m++) { l = this.currentNav > 1 ? this.slides[m].buttS : this.slides[m].butt; if (l) { l.bg.css({ opacity: (m == this.slide_sel || this.currentNav == 2) ? 1 : this.sett.button_opacity, left: this.buttonIE, top: this.buttonIE, width: n, height: n }) } if (this.currentNav == 2) { if (this.IE8) { l.dot.css("left", this.icDotOff - (m == this.slide_sel ? this.icSize : 0)) } else { l.bg.css("background-position", (this.icDotOff - (m == this.slide_sel ? this.icSize : 0)) + "px center") } } } this.timerReset(k); l = this.currentNav > 1 ? this.slides[this.slide_sel].buttS : this.slides[this.slide_sel].butt; if (this.buttonIE > 0 && l.sh) { l.sh.css({ left: 0, top: 0, width: this.sett.button_size + 2, height: this.sett.button_size + 2 }) } }, checkDropDown: function (n, k) { var l = n ? n.data.self : this; var k = n ? n.data.up : k; if (k && !l.numShow) { for (var m = 0; m < l.slide_tot; m++) { clearTimeout(l.buttonLeaveTimer); clearTimeout(l.slides[m].timer); l.showHideButton(m, true) } } else { if (!k && l.numShow) { l.buttonLeaveTimer = setTimeout(function () { l.numShow = false; for (var o = 0; o < l.slide_tot; o++) { l.showHideButton(o, false) } }, n ? 300 : 0) } } }, showHideButton: function (o, k) { var m = this; var n, p, r, q, l; l = m.slides[o].butt; clearTimeout(m.buttonLeaveTimer); clearTimeout(m.slides[o].timer); l.stop(); if (k) { m.numShow = true; m.slides[o].butt.show(); if (l.css("opacity") == 1) { l.css("opacity", 0) } n = (m.slide_tot - o) * (100 / m.slide_tot); p = 20 + ((m.slide_tot - o) * (300 / m.slide_tot)); r = 1; q = 3 } else { m.numShow = false; n = o * (150 / m.slide_tot); p = 20 + (o * (150 / m.slide_tot)); r = 0; q = 8 } m.slides[o].timer = setTimeout(function () { l.animate({ opacity: r }, { duration: p, step: function (s) { m.showHideStep(s, q, l, k, o) }, complete: function () { if (!k) { m.slides[o].butt.hide() } } }) }, n) }, showHideStep: function (m, r, n, q, o) { var t = this, v = t.currentNav == 2 ? t.sett.dot_button_size : t.sett.button_size, k = t.currentNav == 2 ? t.sett.dot_button_space : t.sett.button_space, l = parseInt((v / r) - (v / r * m), 10), u = v - (l * 2); n.bg.css({ left: l + t.buttonIE, top: l + t.buttonIE, width: u, height: u }); if (t.buttonIE > 0) { n.sh.css({ left: l, top: l, width: u + 2, height: u + 2 }) } if (n.ih) { n.bt.css("top", -l - 1); n.ih.height(u - 2) } if (t.sett.button_numbers_horizontal && o == t.slide_tot - 1) { if (t.clockTimer && t.navHolder) { if (t.buttonNext) { t.clockTimer.css("left", q ? -(v + k) * m : ((v + k) * (t.slide_tot - 1) * (1 - m)) + (v + k) * m) } if (t.buttonBack) { t.buttonBack.css("left", parseInt(t.clockTimer.css("left")) - v - k - t.buttonIE) } t.buttonPause.css({ left: parseInt(t.clockTimer.css("left"), 10) - t.buttonIE, top: parseInt(t.clockTimer.css("top"), 10) - t.buttonIE }) } else { if (t.buttonBack && t.buttonNext) { t.buttonBack.css("left", (q ? -m * (v + k) : ((v + k) * (t.slide_tot - 1) * (1 - m)) + (v + k) * m) - t.buttonIE) } } } }, checkTransitionStatus: function () { if (this.sett.slide_transition == "fade") { if (this.slide_fin) { return true } else { return false } } else { if (this.slide_dir < 0 && this.slides[this.slide_sel].con.position().left < this.bW / 2) { return true } else { if (this.slide_dir > 0 && this.slides[this.slide_sel].con.position().left > -this.bW / 2) { return true } else { return false } } } }, startDelayTimer: function () { var k = this; if (k.clockTimer && k.currentNav == 1) { // k.clockTimer.stop() } k.clockPlaying = true; k.timerob.stop().css("left", 0).animate({ left: 720 }, { easing: "linear", duration: k.slides[k.slide_sel].delay, queue: false, step: function (m) { if (k.sett.button_show_timer && k.currentNav == 1) { if (k.canvasSupport) { var l = k.drawTimer(k); l.strokeStyle = k.sett.button_color; l.beginPath(); l.arc(k.sett.button_size / 2, k.sett.button_size / 2, (k.sett.button_size / 2) - (k.sett.button_size / 10), (Math.PI * 2 * (m / 720)) - (Math.PI / 2), -Math.PI / 2, true); l.stroke(); l.closePath() } else { var n = (parseInt(m / 720 * 39, 10) * -(24 * k.sett.button_size / 20)) - 2; n < -(39 * (24 * k.sett.button_size / 20)) - 2 ? n = -2 : ""; k.clockTimer.children().eq(0).css("left", n) } } }, complete: function () { k.clockPlaying = false; if (!k.slide_drg) { k.slide_dir = -1; k.changeSlide("next"); if (k.sett.button_show_numbers && k.currentNav < 3) { k.toggleButton(false) } else { k.timerReset(false) } } } }) }, timerReset: function (l) { var k = this; if (k.clockPlaying) { k.timerob.stop() } if (k.autoPlaying) { if (k.clockTimer && k.currentNav == 1) { if (l) { k.timerHalt() } else { k.clockTimer.stop().fadeTo(300, 0.4, function (m) { k.timerHalt() }) } } } }, timerHalt: function () { var k = this; if (k.canvasSupport) { k.drawTimer(k) } else { k.clockTimer.css("filter", "none").children().eq(0).css("left", -2) } }, drawTimer: function (l) { var k = l.clockContext; k.clearRect(0, 0, l.sett.button_size, l.sett.button_size); k.strokeStyle = "rgba(255, 255, 255, .4)"; k.beginPath(); k.arc(l.sett.button_size / 2, l.sett.button_size / 2, (l.sett.button_size / 2) - (l.sett.button_size / 10), 0, Math.PI * 2, true); k.stroke(); k.closePath(); l.clockTimer.css("opacity", 1); return k }, transPrepare: function (n, m, o, l) { var k = this; k.zSort(n, m); if (k.slides[o].txt) { if (!k.dotButtonBlurBG) { k.slides[o].cap.hide() } if (k.sett.caption_float_mode) { k.slides[o].cap.css("left", k.slides[o].cx + (k.IE8 || k.dotButtonBlurBG ? 0 : (100 * -k.slide_dir))) } if (l && k.IE8) { k.slides[o].txt.stop(true); k.slides[o].cap.stop(true) } } if (k.slide_pr1 !== "") { if (k.slides[k.slide_pr1].txt) { k.textOut() } } k.slide_drg = false; k.slide_fin = false; k.slide_playing = true }, transComplete: function (k, l) { k.slide_fin = true; if (k.slide_sta) { k.slide_sta = false; k.$cont.css("background-image", "none") } if (k.slide_sel == k.slide_sel && k.slides[l].txt && k.enableCaption && k.slide_sel == l) { k.animateCaption() } if (k.autoPlaying) { if (k.currentNav == 3) { k.toggleButton(true) } k.startDelayTimer() } }, move: function () { var k = this, l = k.slide_sel; k.transPrepare(2, 1, l, false); k.slides[l].con.stop().css({ left: (k.slide_pr1 !== "" ? k.slides[k.slide_pr1].con.position().left + (-k.bW * k.slide_dir) : -k.bW * k.slide_dir), display: "block" }).animate({ left: 0 }, { duration: k.sett.slide_transition_period + 100, easing: "easeInOutQuart", step: function (m) { if (k.slide_pr1 !== "" && k.slide_pr1 !== l) { k.slides[k.slide_pr1].con.stop().css("left", m + (k.bW * k.slide_dir)) } if (k.slide_pr2 !== "" && k.slide_pr2 !== l && k.slide_pr2 !== k.slide_pr1) { k.slides[k.slide_pr2].con.stop().css("left", m + (k.bW * 2 * k.slide_dir)) } }, complete: function () { k.transComplete(k, l) } }) }, fade: function () { var k = this, l = k.slide_sel; k.transPrepare(2, 1, l, false); k.slides[l].con.stop().css({ left: 0, display: "none" }).fadeIn({ duration: k.sett.slide_transition_period + 100, easing: "easeInOutQuart", complete: function () { k.transComplete(k, l) } }) }, slideIn: function () { var k = this, m = this.slide_sel, l = k.shProp; k.transPrepare(2, 1, m, true); k.slides[m].con.stop(true).css({ left: (k.bW + 30) * -k.slide_dir, sh: "0px 0px 45px 0px #000000", display: "block" }).animate({ left: 0 }, { duration: k.sett.slide_transition_period + 100, easing: "easeInOutQuart", complete: function () { k.transComplete(k, m); k.slides[m].con.css(k.shProp, "none") } }) }, slideOut: function () { var k = this, m = this.slide_sel, l = k.shProp; k.transPrepare(1, 2, m, false); if (k.slide_pr1 !== "") { k.slides[m].con.stop(true).css({ left: 0, sh: "0px 0px 45px 0px #000000", display: "block" }); if (k.IE8 && k.slides[m].txt) { k.slides[k.slide_pr1].txt.stop(true); k.slides[k.slide_pr1].cap.stop(true) } k.slides[k.slide_pr1].con.stop(true).animate({ left: k.slide_dir * (k.bW + 30) }, { duration: k.sett.slide_transition_period, easing: "easeInOutQuart", complete: function () { k.transComplete(k, m); k.slides[m].con.css(k.shProp, "none") } }) } else { k.slides[m].con.stop(true).css({ left: k.bW, display: "block" }).animate({ left: 0 }, { duration: k.sett.slide_transition_period, easing: "easeInOutQuart", complete: function () { k.slide_fin = true; if (m == k.slide_sel && k.slides[m].txt && k.enableCaption) { k.animateCaption() } if (k.autoPlaying) { k.startDelayTimer() } } }) } }, resizeBanner: function (o) { var l = this, k = l.bW; if (o.internal) { l.bW = l.$cont.width(); l.bH = l.getHeight() } else { if (o.width) { l.bW = k = o.width; l.$cont.width(l.bW) } else { if (o.maxWidth) { l.bW = k = l.maxW = o.maxWidth; l.$cont.css("max-width", l.maxW + "px"); l.bW = l.$cont.width() } } if (o.height) { l.bH = l.oH = o.height; l.ratio = k / l.oH } else { l.oH = k / l.ratio } l.bH = l.getHeight() } if (l.sett.responsive) { l.enableCaption = !l.checkLimit(l.sett.responsive_limit_caption, false); if (l.sett.responsive_limit_navigation !== "") { if (l.checkLimit(l.sett.responsive_limit_navigation, false)) { if (l.currentNav !== l.sett.responsive_limit_navigation_type) { l.currentNav = l.sett.responsive_limit_navigation_type; l.swapNavigation(true) } } else { if (l.currentNav !== l.sett.navigation_type) { l.currentNav = l.sett.navigation_type; l.swapNavigation(true) } } } } if (l.currentNav == 2) { l.navHolderD.css("left", l.bW / 2) } else { if (l.currentNav == 3) { l.buttonNextA.css({ left: l.bW - l.sett.button_size - l.sett.button_margin, top: (l.bH - l.sett.button_size) / 2 }); l.buttonBackA.css({ left: l.sett.button_margin, top: (l.bH - l.sett.button_size) / 2 }) } } for (var m = l.slide_sel, n = true; m < l.slide_tot; m++) { if (n || m !== l.slide_sel) { l.resizeImage(m); if (l.slides[m].txt) { l.updateText(m); if (!l.enableCaption && !l.dotButtonBlurBG) { l.slides[m].cap.hide() } else { l.slides[m].cap.show(); l.slides[m].txt.show() } } if (n) { m = (l.slide_sel == 0) ? 0 : -1; n = false } else { l.slides[m].con.stop().css("left", l.bW * l.slide_dir) } } } } }; e.fn.TransBanner = function (l) { var k = arguments; return this.each(function (o) { var n = e(this); var m = n.data("TransBanner"); if (!m) { var p = new Date(); n.data("TransBanner", new i(n, l, p.getTime())) } else { if (m[k[0]]) { m[l].apply(m, Array.prototype.slice.call(k, 1)) } } }) }; //Below is slightly customized version of StackBoxBlur to fit TransBanner /* StackBoxBlur - a fast almost Box Blur For Canvas Version: 0.3 Author: Mario Klingemann Contact: mario@quasimondo.com Website: http://www.quasimondo.com/ Twitter: @quasimondo In case you find this class useful - especially in commercial projects - I am not totally unhappy for a small donation to my PayPal account mario@quasimondo.de Copyright (c) 2010 Mario Klingemann Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ var j = [1, 171, 205, 293, 57, 373, 79, 137, 241, 27, 391, 357, 41, 19, 283, 265, 497, 469, 443, 421, 25, 191, 365, 349, 335, 161, 155, 149, 9, 278, 269, 261, 505, 245, 475, 231, 449, 437, 213, 415, 405, 395, 193, 377, 369, 361, 353, 345, 169, 331, 325, 319, 313, 307, 301, 37, 145, 285, 281, 69, 271, 267, 263, 259, 509, 501, 493, 243, 479, 118, 465, 459, 113, 446, 55, 435, 429, 423, 209, 413, 51, 403, 199, 393, 97, 3, 379, 375, 371, 367, 363, 359, 355, 351, 347, 43, 85, 337, 333, 165, 327, 323, 5, 317, 157, 311, 77, 305, 303, 75, 297, 294, 73, 289, 287, 71, 141, 279, 277, 275, 68, 135, 67, 133, 33, 262, 260, 129, 511, 507, 503, 499, 495, 491, 61, 121, 481, 477, 237, 235, 467, 232, 115, 457, 227, 451, 7, 445, 221, 439, 218, 433, 215, 427, 425, 211, 419, 417, 207, 411, 409, 203, 202, 401, 399, 396, 197, 49, 389, 387, 385, 383, 95, 189, 47, 187, 93, 185, 23, 183, 91, 181, 45, 179, 89, 177, 11, 175, 87, 173, 345, 343, 341, 339, 337, 21, 167, 83, 331, 329, 327, 163, 81, 323, 321, 319, 159, 79, 315, 313, 39, 155, 309, 307, 153, 305, 303, 151, 75, 299, 149, 37, 295, 147, 73, 291, 145, 289, 287, 143, 285, 71, 141, 281, 35, 279, 139, 69, 275, 137, 273, 17, 271, 135, 269, 267, 133, 265, 33, 263, 131, 261, 130, 259, 129, 257, 1]; var a = [0, 9, 10, 11, 9, 12, 10, 11, 12, 9, 13, 13, 10, 9, 13, 13, 14, 14, 14, 14, 10, 13, 14, 14, 14, 13, 13, 13, 9, 14, 14, 14, 15, 14, 15, 14, 15, 15, 14, 15, 15, 15, 14, 15, 15, 15, 15, 15, 14, 15, 15, 15, 15, 15, 15, 12, 14, 15, 15, 13, 15, 15, 15, 15, 16, 16, 16, 15, 16, 14, 16, 16, 14, 16, 13, 16, 16, 16, 15, 16, 13, 16, 15, 16, 14, 9, 16, 16, 16, 16, 16, 16, 16, 16, 16, 13, 14, 16, 16, 15, 16, 16, 10, 16, 15, 16, 14, 16, 16, 14, 16, 16, 14, 16, 16, 14, 15, 16, 16, 16, 14, 15, 14, 15, 13, 16, 16, 15, 17, 17, 17, 17, 17, 17, 14, 15, 17, 17, 16, 16, 17, 16, 15, 17, 16, 17, 11, 17, 16, 17, 16, 17, 16, 17, 17, 16, 17, 17, 16, 17, 17, 16, 16, 17, 17, 17, 16, 14, 17, 17, 17, 17, 15, 16, 14, 16, 15, 16, 13, 16, 15, 16, 14, 16, 15, 16, 12, 16, 15, 16, 17, 17, 17, 17, 17, 13, 16, 15, 17, 17, 17, 16, 15, 17, 17, 17, 16, 15, 17, 17, 14, 16, 17, 17, 16, 17, 17, 16, 15, 17, 16, 14, 17, 16, 15, 17, 16, 17, 17, 16, 17, 15, 16, 17, 14, 17, 16, 15, 17, 16, 17, 13, 17, 16, 17, 17, 16, 17, 14, 17, 16, 17, 16, 17, 16, 17, 9]; function g(v, y, r, s, w, x, A, C, B, t, E, z) { var q = s; var u = w; B.style.width = q + "px"; B.style.height = u + "px"; B.width = q; B.height = u; var D = B.getContext("2d"); D.clearRect(0, 0, q, u); D.scale(x, x); D.drawImage(v, (-y + (A !== "" ? A : 0)) / x, (-r + (C !== "" ? C : 0)) / x); if (isNaN(t) || t < 1) { return } b(B, 0, 0, q, u, t, z); D.restore() } function b(aC, aj, al, aI, aH, ab, X) { if (isNaN(ab) || ab < 1) { return } ab |= 0; if (isNaN(X)) { X = 1 } X |= 0; if (X > 3) { X = 3 } if (X < 1) { X = 1 } var p = aC.getContext("2d"); var Y; try { try { Y = p.getImageData(aj, al, aI, aH) } catch (x) { try { netscape.security.PrivilegeManager.enablePrivilege("UniversalBrowserRead"); Y = p.getImageData(aj, al, aI, aH) } catch (x) { return } } } catch (x) {} var aD = Y.data; var ad, ae, V, Z, av, ar, ay, aF, aE, am, ax, ak, ao, ag, ac, au, az, at, aq, ah; var y = ab + ab + 1; var af = aI << 2; var aw = aI - 1; var aa = aH - 1; var aA = ab + 1; var ai = new c(); var an = ai; for (V = 1; V < y; V++) { an = an.next = new c(); if (V == aA) { var aB = an } } an.next = ai; var W = null; var ap = j[ab]; var aG = a[ab]; while (X-- > 0) { ay = ar = 0; for (ae = aH; --ae > -1;) { aF = aA * (az = aD[ar]); aE = aA * (at = aD[ar + 1]); am = aA * (aq = aD[ar + 2]); an = ai; for (V = aA; --V > -1;) { an.r = az; an.g = at; an.b = aq; an = an.next } for (V = 1; V < aA; V++) { Z = ar + ((aw < V ? aw : V) << 2); aF += (an.r = aD[Z++]); aE += (an.g = aD[Z++]); am += (an.b = aD[Z]); an = an.next } W = ai; for (ad = 0; ad < aI; ad++) { aD[ar++] = (aF * ap) >>> aG; aD[ar++] = (aE * ap) >>> aG; aD[ar++] = (am * ap) >>> aG; ar++; Z = (ay + ((Z = ad + ab + 1) < aw ? Z : aw)) << 2; aF -= W.r - (W.r = aD[Z++]); aE -= W.g - (W.g = aD[Z++]); am -= W.b - (W.b = aD[Z]); W = W.next } ay += aI } for (ad = 0; ad < aI; ad++) { ar = ad << 2; aF = aA * (az = aD[ar++]); aE = aA * (at = aD[ar++]); am = aA * (aq = aD[ar]); an = ai; for (V = 0; V < aA; V++) { an.r = az; an.g = at; an.b = aq; an = an.next } av = aI; for (V = 1; V <= ab; V++) { ar = (av + ad) << 2; aF += (an.r = aD[ar++]); aE += (an.g = aD[ar++]); am += (an.b = aD[ar]); an = an.next; if (V < aa) { av += aI } } ar = ad; W = ai; for (ae = 0; ae < aH; ae++) { Z = ar << 2; aD[Z] = (aF * ap) >>> aG; aD[Z + 1] = (aE * ap) >>> aG; aD[Z + 2] = (am * ap) >>> aG; Z = (ad + (((Z = ae + aA) < aa ? Z : aa) * aI)) << 2; aF -= W.r - (W.r = aD[Z]); aE -= W.g - (W.g = aD[Z + 1]); am -= W.b - (W.b = aD[Z + 2]); W = W.next; ar += aI } } } p.putImageData(Y, aj, al) } function c() { this.r = 0; this.g = 0; this.b = 0; this.a = 0; this.next = null } })(jQuery, window, document); ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// /* * * jQuery $.getImageData Plugin 0.3 * http://www.maxnov.com/getimagedata * * Written by Max Novakovic (http://www.maxnov.com/) * Date: Thu Jan 13 2011 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * Includes jQuery JSONP Core Plugin 2.1.4 * http://code.google.com/p/jquery-jsonp/ * Copyright 2010, Julian Aubourg * Released under the MIT License. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * Copyright 2011, Max Novakovic * Dual licensed under the MIT or GPL Version 2 licenses. * http://www.maxnov.com/getimagedata/#license * */ (function (c, g) { function n() {} function o(a) { s = [a] } function e(a, j, k) { return a && a.apply(j.context || j, k) } function h(a) { function j(b) { !l++ && g(function () { p(); q && (t[d] = { s: [b] }); z && (b = z.apply(a, [b])); e(a.success, a, [b, A]); e(B, a, [a, A]) }, 0) } function k(b) { !l++ && g(function () { p(); q && b != C && (t[d] = b); e(a.error, a, [a, b]); e(B, a, [a, b]) }, 0) } a = c.extend({}, D, a); var B = a.complete, z = a.dataFilter, E = a.callbackParameter, F = a.callback, R = a.cache, q = a.pageCache, G = a.charset, d = a.url, f = a.data, H = a.timeout, r, l = 0, p = n; a.abort = function () { !l++ && p() }; if (e(a.beforeSend, a, [a]) === false || l) return a; d = d || u; f = f ? typeof f == "string" ? f : c.param(f, a.traditional) : u; d += f ? (/\?/.test(d) ? "&" : "?") + f : u; E && (d += (/\?/.test(d) ? "&" : "?") + encodeURIComponent(E) + "=?"); !R && !q && (d += (/\?/.test(d) ? "&" : "?") + "_" + (new Date).getTime() + "="); d = d.replace(/=\?(&|$)/, "=" + F + "$1"); q && (r = t[d]) ? r.s ? j(r.s[0]) : k(r) : g(function (b, m, v) { if (!l) { v = H > 0 && g(function () { k(C) }, H); p = function () { v && clearTimeout(v); b[I] = b[w] = b[J] = b[x] = null; i[K](b); m && i[K](m) }; window[F] = o; b = c(L)[0]; b.id = M + S++; if (G) b[T] = G; var O = function (y) { (b[w] || n)(); y = s; s = undefined; y ? j(y[0]) : k(N) }; if (P.msie) { b.event = w; b.htmlFor = b.id; b[I] = function () { /loaded|complete/.test(b.readyState) && O() } } else { b[x] = b[J] = O; P.opera ? (m = c(L)[0]).text = "jQuery('#" + b.id + "')[0]." + x + "()" : b[Q] = Q } b.src = d; i.insertBefore(b, i.firstChild); m && i.insertBefore(m, i.firstChild) } }, 0); return a } var Q = "async", T = "charset", u = "", N = "error", M = "_jqjsp", w = "onclick", x = "on" + N, J = "onload", I = "onreadystatechange", K = "removeChild", L = "