var tabstartanimate=function() {
};
$(document).ready(function() {
if (typeof MobileDetect=='function')
var md = new MobileDetect( window.navigator.userAgent );
if (md&&md.mobile()) {
$('.mobile-tablet').attr('style', 'float: right; margin: 0 0 0 15px;position: relative; visibility: visible;');
$('.no-mobile-tablet').attr('style', 'float: right; margin: 0 0 0 15px;position: absolute; visibility: hidden;');
} else $('.no-mobile-tablet').attr('style', 'float: right; margin: 0 0 0 15px;position: relative; visibility: visible;');
var $r=$(".wide-window"),
$w=$(window);
if ($(".tabs-nav").length>0) {
var $t=$(".tabs-nav>li.active"),
$l=$t.closest(".tabs").find(".tabs-content>li").eq($t.index());
$l.addClass('active').fadeIn(0).siblings().fadeOut(0);
$t.closest(".tabs-nav-wrapper").find(".triangle").css('left',$t.offset().left-$t.closest(".tabs-nav-wrapper").offset().left+($t.width()-16)/2);
$(".tabs-nav>li").click(function() {
var $t=$(this),
$lis=$t.closest(".tabs").find(".tabs-content>li");
if ($t.hasClass('active'))
return;
$t.addClass('active').siblings().removeClass('active');
$t.closest(".tabs").find(".tabs-content>li.active").removeClass('active').fadeOut(300, function() {
$lis.eq($t.index()).fadeIn({
duration:300,
//start:tabstartanimate
start:function() {
window.tabstartanimate();
window.tabstartanimate1();
}
}).addClass('active');
});
$t.closest(".tabs-nav-wrapper").find(".triangle").animate({
'left':$t.offset().left-$t.closest(".tabs-nav-wrapper").offset().left+($t.width()-16)/2}, 600);
});
if (location.hash) {
$(".tabs-nav>li").eq(location.hash.substr(1)).trigger('click');
}
}
function resize() {
var w=$w.width();
$r.css({
'width': w,
'margin-left': -(w-960)/2
});
}
resize();
$w.resize(resize);
function transitionEndEventName () {
var i,
undefined,
el = document.getElementsByClassName("animatedend"),
transitions = {
'transition':'transitionend',
'OTransition':'otransitionend', // oTransitionEnd in very old Opera
'MozTransition':'transitionend',
'WebkitTransition':'webkitTransitionEnd'
};
for (i in transitions) {
if (transitions.hasOwnProperty(i) && el[0].style[i] !== undefined) {
return transitions[i];
}
}
}
$(".applyCollost").click(function() {
$(this).closest('p').find('.after').addClass('animated');
$(this).closest('p').find('.before').addClass('animated');
$(this).closest('span').find('.applyCollost').removeClass('delay').addClass('animated');
$(this).closest('span').find('.refresh').addClass('animated');
})
$(".refresh").click(function() {
$(this).closest('p').find('.after').removeClass('animated').addClass('animatedend');
$(this).closest('p').find('.before').removeClass('animated');
$(this).closest('span').find('.applyCollost').removeClass('animated');
$(this).closest('span').find('.refresh').removeClass('animated');
var transitionEnd = transitionEndEventName();
$(".animatedend").on(transitionEnd, function() {
$(this).closest('p').find('.after').removeClass('animatedend')
});
})
});
$(window).ready(function() {
setTimeout(function() {
$(".applyCollost").animate({'opacity':1},1000,function() {
$(this).removeAttr('style').addClass('faded');
});
},2000);
});