function mycarousel_initCallback(carousel) {
 jQuery('.titresSelection a').bind('click', function() {
 var decalTh = jQuery(this).attr("rel") * jQuery("#diapositives li").width() - jQuery("#diapositives li").width();
  jQuery("#diapositives ul").animate({
    left: -decalTh
  }, 500, function() {});
 return false;
 });
};

// Ride the carousel...
jQuery(document).ready(function() {

 jQuery("#diapositives").jcarousel({
 scroll: 1,
 initCallback: mycarousel_initCallback,
 // This tells jCarousel NOT to autobuild prev/next buttons
 buttonNextHTML: null,
 buttonPrevHTML: null
 });
}); 
