// CONTROLLING EVENTS IN jQuery
$(document).ready( function() {
    $('#rotator').cycle({
        fx:     'fade',
        speed:   1400,
        timeout: 7000
    });
});

