$(document).ready(function() {
    $('.slideshow').cycle({
	fx:     'fade', 
	speed:  'slow', 
    	timeout: 6000, //specifies how many milliseconds will elapse between the start of each transition.  
    	next:   '#next2', //value in the id field of your link used foor the next button
    	prev:   '#prev2', //value in the id field of your link used foor the preivous button
	pager:  '#nav', //display paging in element with id="nav"
	pause: 1, //causes the slideshow to pause on mouseover. 0 or 1
	random: 0, //causes slides to show in random order rather tha sequential, 0 or 1
	sync: true //The sync option controls whether the slide transitions occur simultaneously.
	});
});



/* choose your transition type, fx:
    * blindX
    * blindY
    * blindZ
    * cover
    * curtainX
    * curtainY
    * fade
    * fadeZoom
    * growX
    * growY
    * none
    * scrollUp
    * scrollDown
    * scrollLeft
    * scrollRight
    * scrollHorz
    * scrollVert
    * shuffle
    * slideX
    * slideY
    * toss
    * turnUp
    * turnDown
    * turnLeft
    * turnRight
    * uncover
    * wipe
    * zoom*/

/* options for speed:
    * fast
    * slow
    * numeric value in miliseconds ex. speed: 2500,*/
