$.fn.cycle.defaults.speed = 900;
$.fn.cycle.defaults.timeout = 6000;
$(function() {
$('#s5').cycle({
    fx:     'fade',
    speed:  1200,
    timeout: 25000,
    next:   '#s1',
    pause:   1
});

$('#s2').cycle({
 //   fx:     'curtainX' 
    fx:     'fade',
    speed: 2400,
    timeout: 10000
});

$('#s1').cycle({
    fx:     'scrollDown',
    easing: 'bounceout',
    delay:  -2000
});

$('#s6').cycle({
    fx:    'fade',
    pause:  1,
    cleartype:  1 // enable cleartype corrections
});

$('#s18').cycle({
    fx:    'scrollDown',
    sync:   0,
    delay: -2000
});



});

