$(document).ready(function() {
    $('#features').cycle({
		fx: 'fade', /*this sets the type of transition the slideshow will make*/
		/*possible transition types:
			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
		*/			
		speed: 1000, /*sets the speed of a transition*/
		timeout: 9000, /*sets the time between transitions*/
		next: '#nextButton', /*defines the element to be used as the "next" button*/
		prev: '#backButton', /*defines the element to be used as the "previous" button*/
		pager: '#pages' /*defines where the page navigation will be built*/
	});
});
