function mycarousel_initCallback(carousel)
{
	// Disable autoscrolling if the user clicks the prev or next button.
    $('.row_right').bind('click', function() {
		carousel.next();
    });
 	
	$('.row_right').hover(function() {
		carousel.stopAuto();
	}, function() {
        carousel.startAuto();
    });
	
    $('.row_left').bind('click', function() {
		carousel.prev();
    });
 
	 $('.row_left').hover(function() {
		carousel.stopAuto();
	}, function() {
        carousel.startAuto();
    });
	
    // Pause autoscrolling if the user moves with the cursor over the clip.
    carousel.clip.hover(function() {
        carousel.stopAuto();
    }, function() {
        carousel.startAuto();
    });
};
