// Set up Sliders
// **************
$(function(){
	$('#slider1').anythingSlider({
		themeDirectory	 : 'slider/css/theme-{themeName}.css',
		startStopped    : false, // If autoPlay is on, this can force it to start stopped
		width           : 384,   // Override the default CSS width
		height			 : 250,
		theme				 : 'grey2',
		buildNavigation : true,
		buildArrows		 : true,
		resizeContents  : true,
		pauseOnHover	 : true,
		delay				 : 3000,
		autoPlayLocked  : true,  // If true, user changing slides will not stop the slideshow
		resumeDelay     : 500 // Resume slideshow after user interaction, only if autoplayLocked is true (in milliseconds).
	});
});


