lis.each(function (i, n) {
var a = $(n).find(‘a’),
text = a.attr(‘title’),
href = a.attr(‘href’),
css = ”;
i == settings.startIndex && (css = ‘active’);
$(‘<a>’).attr(‘href’, href).text(text).addClass(css).css(‘borderRadius’,
settings.clickBarRadius + ‘px’).mouseover(function () {
$(this).addClass(‘active’).siblings().removeClass(‘active’);
ul.find(‘li:eq(‘ + $(this).index() + ‘)’).addClass(‘active’).siblings
().removeClass(‘active’);
start();
stop()
}).appendTo(nums)
});
if (settings.hideClickBar) {
tips.hover(function () {
nums.animate({
top: ‘0px’
},
‘fast’)
},
function () {
nums.animate({
top: tips.height() + ‘px’










