
function mycarousel_initCallback(carousel)
{


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


function scroll(){
	jQuery('#mycarousel').jcarousel({
  		auto: 1,
		scroll:1,
		animation: 'slow',
		wrap: 'circular',
		//wrap:'both',
		buttonNextHTML:null,
		buttonPrevHTML:null,
        initCallback: mycarousel_initCallback
    });	


}






