
$('#jesus').cycle({ 
    fx : 'scrollDown',    /* fx is the name of the effect */
    speed : 1200,   /* The speed option defines the number of milliseconds it will take to transition from one slide to the next */
    timeout : 4000, /* The timeout option specifies how many milliseconds will elapse between the start of each transition. */
    pause : 1,      /* The pause option causes the slideshow to pause when the mouse hovers over the slide */
    random : 1      /* The random option causes the slides to be shown in random order, rather than sequential.  */
});

/**
* These are the names of the effects: please select one :
* blindX
* blindY
* blindZ
* cover
* curtainX
* curtainY
* fade
* fadeZoom
* growX
* growY
* scrollUp
* scrollDown
* scrollLeft
* scrollRight
* scrollHorz
* scrollVert
* shuffle
* slideX
* slideY
* toss
* turnUp
* turnDown
* turnLeft
* turnRight
* uncover
* wipe
* zoom
*/