$.fn.cycle.defaults = { 
    fx:           'fade', // name of transition effect (or comma separated names, ex: fade,scrollUp,shuffle) 
    timeout:       4000,  // milliseconds between slide transitions (0 to disable auto advance) 
    speed:         1000,  // speed of the transition (any valid fx speed value) 
    speedIn:       null,  // speed of the 'in' transition (set to [null] to use the standard speed)
    speedOut:      null,  // speed of the 'out' transition (set to [null] to use the standard speed) 
    sync:          1
};
 
/*
 
The default settings for reference (in case the settings above get messed up)
 
$.fn.cycle.defaults = { 
    fx:           'fade', // name of transition effect (or comma separated names, ex: fade,scrollUp,shuffle) 
    timeout:       4000,  // milliseconds between slide transitions (0 to disable auto advance) 
    speed:         1000,  // speed of the transition (any valid fx speed value) 
    speedIn:       null,  // speed of the 'in' transition (set to [null] to use the standard speed)
    speedOut:      null,  // speed of the 'out' transition (set to [null] to use the standard speed) 
};
 
*/	
