'+
'';
}
$('.cartype-cont').children('div').eq(nindex).attr('loaded',1).children('ul').html(auto_html);
}
}
});
}
$('.cartype-title .type span[tab-type=tab-nav]').on('mouseenter', function() {
creat_autocategory($(this).index(), $(this).attr('data-type'));
var $curdiv = $('.cartype-cont').children('div').eq($('.cartype-cont').attr('index'));
$curdiv.find('.scroll-pic-box').css('left', '0px');
$curdiv.find('.scroll-arr-l-cartype').hide();
$curdiv.find('.scroll-arr-r-cartype').removeClass('end');
$('.cartype-cont').attr('index', $(this).index());
});
$('.mod-10 .order-menu span').eq(1).on('mouseenter', function() {
var nindex = $('.cartype-title .type .selected').index();
creat_autocategory(nindex, $('.cartype-title .type .selected').attr('data-type'));
$('.cartype-cont').attr('index', nindex);
});
$('.mod-10').delegate('.scroll-arr-r-cartype', 'click', function() {
var $box = $(this).siblings('.scroll-pic-box');
if ($(this).attr('scrollwidth-init') != 1) {
$box.width($box.find('.scroll-pic-wrap').width()+1);
$(this).attr('scrollwidth-init', 1);
}
$(this).siblings('.scroll-arr-l-cartype').show();
if ($box.position().left == 256-$box.width()) {
window.open($(this).parents('.scroll-pic-frame-autotype').siblings('.ftb').attr('href'))
} else if (Math.abs($box.position().left)+256*2>$box.width() || $box.position().left==2*256-$box.width()) {
$(this).addClass('end');
$box.animate({left: (256-$box.width())+'px'});
} else {
$box.animate({left:'-=256px'});
}
});
$('.mod-10').delegate('.scroll-arr-l-cartype', 'click', function() {
var $box = $(this).siblings('.scroll-pic-box');
$(this).siblings('.scroll-arr-r-cartype').removeClass('end');
if (Math.abs($box.position().left)<256) {
$box.animate({left: '0px'});
$(this).hide();
} else {
$box.animate({left:'+=256px'});
}
});