//General rotators through out the site
//using the jquery.cycle.all.js
//can use any container as the slideshow framework
//each first child element will become a slide, content can be anything
//to add navigation - add this ".after('<div id="Nav">')" see below
/*
jQuery('#s4') 
.after('<div id="Nav">') 
.cycle({ 
    fx:     'turnDown', 
    speed:  'fast', 
    timeout: 0, 
    pager:  '#Nav' 
});
*/

/*home page main slideshow*/
jQuery('#slideshow-home').cycle({ 
    fx:     'fade', 
    speed:   3000, 
    timeout: 3000, 
    random:  0,
    pager:  '#nav'
});
/*common page slideshows   - add this to add navigation ".after('<div id="nav">')" */
jQuery('.slideshow').cycle({ 
    fx:     'fade', 
    speed:   1500, 
    timeout: 3000, 
    pager:  '#nav'
});
jQuery('.slideshow-slow').cycle({ 
    fx:     'fade', 
    speed:   1500, 
    timeout: 5000,
    pause: 1
});

/* rotate images randomly */
jQuery('.slideshow-random').cycle({ 
    fx:     'fade',
    random:	 1, 
    speed:   1500, 
    timeout: 3000, 
    pager:  '#nav'
});
/* rotate images randomly and slowly */
jQuery('.slideshow-random-slow').cycle({ 
    fx:     'fade',
    random:	 1, 
    speed:   1500, 
    timeout: 5000, 
    pager:  '#nav'
});

/*common page quote-rotators*/
jQuery('.quote-rotator').cycle({ 
    fx:     'fade', 
    speed:   1500, 
    timeout: 6500,
});
/*common page fast quote-rotators*/
jQuery('.quote-rotator-slow').cycle({ 
    fx:     'fade', 
    speed:   1500, 
    timeout: 10000,
});
/*footer twitter rotator*/
jQuery('#twitter_update_list').cycle({ 
    fx:     'scrollUp', 
    speed:   1500, 
    timeout: 5000,
});

/* store homepage image rotator*/
jQuery('#store-slideshow').cycle({
	fx: 'fade',
	speed: 1500,
	timeout: 3000,
	pause: 1, 
});
jQuery('.store-slideshow').cycle({
	fx: 'fade',
	speed: 1500,
	timeout: 3000,
	pause: 1, 
});
jQuery('.store-slideshow-slow').cycle({
	fx: 'fade',
	speed: 1500,
	timeout: 5000,
	pause: 1, 
});

