function mycarousel_initCallback(carousel)
{

    // Pause autoscrolling if the user moves with the cursor over the clip.
    carousel.clip.hover(function() {
        carousel.stopAuto();
    }, function() {
        carousel.startAuto();
    });
};

jQuery(document).ready(function() {
    jQuery('#news').jcarousel({
        auto: 10000,
        initCallback: mycarousel_initCallback
    });
});

$(document).ready(function() {		
	$('#lista-vendidas a').each(function(index) {
		$(this).addClass('mais-vendido-'+(index+1));
	});
});
