(function($){
"use strict";
UNCODE.checkScrollForTabs=function(){
var goToSection=window.location.hash.replace('#', ''),
$index;
goToSection=goToSection.replace(/[^-A-Za-z0-9+&@#/%?=~_]/g, "");
goToSection=encodeURIComponent(goToSection);
$index=$('[data-id="' + goToSection + '"]').closest('.uncode-tabs, .uncode-accordion');
$index.attr('data-parent', 'parent-' + goToSection);
if(window.location.hash!=undefined&&window.location.hash!=''){
requestTimeout(function(){
scrollBody('parent-' + goToSection);
}, 500);
}
$('.page-body a[href^="#"]').not('[data-tab-history]').not('.scroll-top').click(function(e){
var hash=(e.currentTarget).hash;
if($('.uncode-tabs a[href="' + hash + '"][data-tab-history]').length){
$('a[href="' + hash + '"][data-tab-history]').click();
scrollBody(hash);
}});
var scrollBody=function(index){
var getSection=$('a[href="' + index + '"][data-tab-history]'),
scrollTo,
safeGap=27;
if(! getSection.length){
getSection=$('div[data-parent="' + index + '"]');
if(getSection.attr('data-target')=='row'){
getSection=getSection.closest('.vc_row');
safeGap=0;
}}
if(typeof getSection==='undefined'||! getSection.length){
return;
}
var body=$("html, body"),
bodyTop=document.documentElement['scrollTop']||document.body['scrollTop'],
delta=bodyTop - (getSection.length ? getSection.offset().top:0),
getOffset=UNCODE.get_scroll_offset();
if(typeof getSection.offset()==='undefined')
return;
scrollTo=getSection.offset().top - safeGap;
scrollTo -=getOffset;
var scrollSpeed=(SiteParameters.constant_scroll=='on') ? Math.abs(delta) / parseFloat(SiteParameters.scroll_speed):SiteParameters.scroll_speed;
if(scrollSpeed < 1000&&SiteParameters.constant_scroll=='on') scrollSpeed=1000;
if(index!=0){
UNCODE.scrolling=true;
}
if(scrollSpeed==0){
body.scrollTop((delta > 0) ? scrollTo - 0.1:scrollTo);
UNCODE.scrolling=false;
}else{
body.animate({
scrollTop: (delta > 0) ? scrollTo - 0.1:scrollTo
}, scrollSpeed, 'easeInOutQuad', function(){
requestTimeout(function(){
UNCODE.scrolling=false;
if(getOffset!=UNCODE.get_scroll_offset()){
scrollBody(index);
}}, 100);
});
}};};
})(jQuery);