/**
 * @author e1032477
 */
$(function() {
    if (jQuery().cycle) {
        $('.ImageRotator .Normal').cycle({
            fx: 'fade',
            timeout: 8000,  // milliseconds between slide transitions (0 to disable auto advance) 
            speed: 1000,  // speed of the transition (any valid fx speed value)
            pause: 1,     // true to enable "pause on hover"
            random: 1
            //delay: 1000
        });
    }
});


