// JavaScript Document

$(function(){
	$('#homepage_slider').anythingSlider({
		easing              : 'easeInOutQuint',   // Anything other than "linear" or "swing" requires the easing plugin or jQuery UI

		buildArrows         : false,      // If true, builds the forwards and backwards buttons
		buildNavigation     : true,      // If true, builds a list of anchor links to link to each panel
		buildStartStop      : false,      // ** If true, builds the start/stop button

		hashTags            : false,      // Should links change the hashtag in the URL?

		// Slideshow options
		autoPlay            : true,     // If true, the slideshow will start running; replaces "startStopped" option
		autoPlayLocked      : true,     // If true, user changing slides will not stop the slideshow

		// Times
		delay               : 6000,      // How long between slideshow transitions in AutoPlay mode (in milliseconds)
		resumeDelay         : 15000,     // Resume slideshow after user interaction, only if autoplayLocked is true (in milliseconds).
		animationTime       : 1000,       // How long the slideshow transition takes (in milliseconds)
		delayBeforeAnimate  : 0         // How long to pause slide animation before going to the desired slide (used if you want your "out" FX to show).
	});
	$('#logos_slider').anythingSlider({
		easing              : 'easeInOutQuint',   // Anything other than "linear" or "swing" requires the easing plugin or jQuery UI

		buildArrows         : true,      // If true, builds the forwards and backwards buttons
		buildNavigation     : false,      // If true, builds a list of anchor links to link to each panel
		buildStartStop      : false,      // ** If true, builds the start/stop button

		hashTags            : false,      // Should links change the hashtag in the URL?

		// Slideshow options
		autoPlay            : true,     // If true, the slideshow will start running; replaces "startStopped" option
		autoPlayLocked      : true,     // If true, user changing slides will not stop the slideshow

		// Times
		delay               : 5000,      // How long between slideshow transitions in AutoPlay mode (in milliseconds)
		resumeDelay         : 15000,     // Resume slideshow after user interaction, only if autoplayLocked is true (in milliseconds).
		animationTime       : 2000,       // How long the slideshow transition takes (in milliseconds)
		delayBeforeAnimate  : 0         // How long to pause slide animation before going to the desired slide (used if you want your "out" FX to show).
	});
});

