// Slider Settings

$(document).ready(function(){
	$('.slides ul').fadeIn(2000);
    $('.carousel').jcarousel({
        auto: 6,
        wrap: 'circular',
		scroll: 6,
		animation: 1000,
        initCallback: mycarousel_initCallback
    });
});



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();
    });
};
