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

$('#s5').cycle({
    fx:     'fade',
    speed:  'fast',
    timeout: 0,
    next:   '#next2',
    prev:   '#prev2',
    cleartype:  1 // enable cleartype corrections
});

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

$('#s4').cycle({
    fx:      'scrollDown',
    speedIn:  2000,
    speedOut: 500,
    easeIn:  'bounceout',
    easeOut: 'backin',
    delay:   -2000
});

$('#s6').cycle({
    fx:    'fade',
    speed: 3600,
    timeout: 6000
});

$('#s4').cycle({
    fx:    'zoom',
    sync:   0,
    delay: -4000
 });

});

