// OPTIONS FOR jquery.cycle.lite SLIDESHOW PLUGIN

jQuery('ul.slideshow').cycle({
	after:         null,   // transition callback (scope set to element that was shown) 
    before:        null,   // transition callback (scope set to element to be shown) 
    delay:         -2500,      // additional delay (in ms) for first transition (hint: can be negative) 
    fit:           1,      // force slides to fit container 
    fx:           'fade',  // name of transition function 
    height:       360,  // container height 
    metaAttr:     'cycle', // data- attribute that holds the option data for the slideshow 
    next:          null,   // id of element to use as click trigger for next slide 
    pause:         0,      // true to enable "pause on hover" 
    prev:          null,   // id of element to use as click trigger for previous slide 
    timeout:       5000,   // milliseconds between slide transitions (0 to disable auto advance) 
    speed:         2500,   // speed of the transition (any valid fx speed value) 
    slideExpr:     null,   // expression for selecting slides (if something other than all children is required) 
    sync:          1,      // true if in/out transitions should occur simultaneously 
 
    // the following options let you create transitions other than fade 
    cssBefore:     {},     // properties that define the initial state of the slide before transitioning in 
    cssAfter:      {},     // properties that defined the state of the slide after transitioning out 
    animIn:        {},     // properties that define how the slide animates in 
    animOut:       {}      // properties that define how the slide animates out
});
