Tympanus Elastislide Carrusel reproducción automática

Estoy utilizando el plugin jQuery responsivo para el tímpano Elastislide Carousel Responsive para mi sitio web. El plugin funciona perfectamente en mi sitio. Pero, quiero que el casusel juegue de forma automática.

Pero, no encuentro ningún código para mover el carrusel automáticamente.

El enlace del Slider Plugin:http://tympanus.net/codrops/2011/09/12/elastislide-responsive-carousel/

El script java que estoy usando

<script type="text/javascript">

    $( '#carousel' ).elastislide( {

    // orientation 'horizontal' || 'vertical'
    orientation : 'horizontal',

    // sliding speed
    speed : 500,

    // sliding easing
    easing : 'ease-in-out',

    // the minimum number of items to show.
    // when we resize the window, this will make sure minItems are always shown
    // (unless of course minItems is higher than the total number of elements)
    minItems : 3,

    // index of the current item (left most item of the carousel)
    start : 0,

    // click item callback
    onClick : function( el, position, evt ) { return false; },
    onReady : function() { return true; },
    onBeforeSlide : function() { return false; },
    onAfterSlide : function() { return false; }

    } );            

</script>

¿Alguien puede ayudar a que el deslizador se ejecute automáticamente? Traté de reproducción automática: cierto. Pero, no funciona.

Respuestas a la pregunta(3)

Su respuesta a la pregunta