/*
 * jQuery Slider
 */

	$(function () {

		$('#slider').anythingSlider({
			width: 960,
			easing: 'easeInOutExpo',
			// New Options for the slider
			autoPlay: true,     				    // This turns off the entire slideshow FUNCTIONALY, not just if it starts running or not
			startStopped: false,    		    // If autoPlay is on, this can force it to start stopped
			pauseOnHover: true,      		// If true & the slideshow is active, the slideshow will pause on hover
			resumeOnVideoEnd: true,      // If true & the slideshow is active & a youtube video is playing, it will pause the autoplay until the video has completed
			stopAtEnd: false,  				   // If true & the slideshow is active, the slideshow will stop on the last page
			playRtl: false,    				   // If true, the slideshow will move right-to-left
			startText: "Start", 				   // Start button text
			stopText: "Stop",   			   // Stop button text
			delay: 6000,     					   // How long between slideshow transitions in AutoPlay mode (in milliseconds)
			animationTime : 900,      	   // How long the slideshow transition takes (in milliseconds)
		});

	});
