/**
 * @author ck
 */
$(document).ready(function() {
$('#slideshow1').cycle({ 
    timeout:       2000,  // milliseconds between slide transitions (0 to disable auto advance) 
    speed:         5000,  // speed of the transition (any valid fx speed value) 
    height:       'auto', // container height 
    sync:          1,     // true if in/out transitions should occur simultaneously 
    fit:           0,     // force slides to fit container 
    delay:         0,     // additional delay (in ms) for first transition (hint: can be negative) 
    slideExpr:     null   // expression for selecting slides (if something other than all children is required) 
});
$('#slideshow2').cycle({ 
    timeout:       2000,  // milliseconds between slide transitions (0 to disable auto advance) 
    speed:         4000,  // speed of the transition (any valid fx speed value) 
    height:       'auto', // container height 
    sync:          1,     // true if in/out transitions should occur simultaneously 
    fit:           0,     // force slides to fit container 
    delay:         0   // additional delay (in ms) for first transition (hint: can be negative) 
});
$('#slideshow_start').cycle({ 
    timeout:       5000,  // milliseconds between slide transitions (0 to disable auto advance) 
    speed:         5000,  // speed of the transition (any valid fx speed value) 
    height:       'auto', // container height 
    sync:          1,     // true if in/out transitions should occur simultaneously 
    fit:           0,     // force slides to fit container 
    delay:         0    // additional delay (in ms) for first transition (hint: can be negative) 
});
});
