function jcCallback(carousel) {
  carousel.clip.hover(function(){
    carousel.stopAuto();
  }, function() {
    carousel.startAuto();
  });
}

$(document).ready(function(){
/*
  $("#carousel").jcarousel({
    auto: 6,
    wrap: 'last',
    initCallback: jcCallback,
    visible: 1,
    scroll: 1,
    buttonNextHTML: null,
    buttonPrevHTML: null,
    animation: 1000,
    easing: 'quintEaseInOut'
  });
*/
  $('#carousel').innerfade({
    speed: 1000,
    timeout: 6000,
    type: 'sequence',
    containerheight: '227px'
  });
});