// CYCLE.ALL calls below

$(document).ready(function() {
	$('.slideshow-fade').cycle({
		fx: 'fade', // choose your transition type, ex: blindX, blindY, blindZ, cover, curtainX, curtainY, fade, fadeZoom, growX, growY, scrollUp, scrollDown, scrollLeft, scrollRight, scrollHorz, scrollVert, shuffle, slideX, slideY, toss, turnUp, turnDown, turnLeft, turnRight, uncover, wipe, zoom
		speed:  1500 ,  //  time each trans takes
		pause:  0 , // 1 is on, pasues on hover
		random:  0 ,  // 1 is on
		timeout: 6000 ,  // time before the start of each, use 0 for click to next
		cleartype:  1 // helps things in IE 6
		// next:   '#s1',  // same div name for click image, or '#next2' for text link
		// prev:   '#prev2' , // goes with text link from above
		// pager:  '#nav',		// add below to the top, where 'slideshow' is
				// .before('<div id="nav">') 
				//.cycle({ 
	});
});


