let offsets = [];
$(window).load(function(){
$.each($(".offset_wrap"), function(){
offsets.push($(this).offset().top);
});
});
$('.offset_wrap a').mouseenter( function() {
$(this).addClass('on');
});
$('.offset_wrap a').mouseleave(function() {
$(this).removeClass('on');
});
$(".main_link_box ul li a").on('click', function(){
$('html, body').animate({scrollTop: offsets[$(this).parent().index()] - 150}, 200);
});
$(document).ready(function(){
listRoll();
});
function listRoll() {
$(".offset_wrap").each(function(index, el){
if($(this).find('.list').lnegth !== 0){
console.log(el);
var ticker = function()
{
timer = setTimeout(function(){
TweenMax.to($(el).find('.list li:first'), 0.4, {marginTop:'-40px', onComplete: function(item){
$(el).find('.list li:first').detach().appendTo($(el).find('.list')).removeAttr('style');
}});
ticker();
}, 2000);
};
ticker();
}
});
}