// JavaScript Document


var $j = jQuery.noConflict(); 

$j(document).ready(function(){

		// Set up Sliders
		// **************

		$j('#slider').anythingSlider({
			//autoPlay		: true,
			delay			: 15000,
			//startStopped    : true,  // If autoPlay is on, this can force it to start stopped
			theme           : 'onp-slider',
			easing          : 'linear',
			//infiniteSlides  : false,
			hashTags        : false, // Should links change the hashtag in the URL?
			autoPlayLocked  : true,  // If true, user changing slides will not stop the slideshow
			resumeDelay     : 8000, // Resume slideshow after user interaction, only if autoplayLocked is true (in milliseconds).
			animationTime   : 800
		});

});
