$(document).ready(function(){
	$('#slider1').anythingSlider(
		{
			width               : 370,      // Override the default CSS width
			height              : 143,     // Override the default CSS height
			theme               : 'minimalist-square', // Theme name
			themeDirectory      : 'design/css/theme-{themeName}.css', // Theme directory & filename {themeName} is replaced by the theme value above
			buildArrows         : true,
			buildNavigation     : false,     // If true, builds a list of anchor links to link to each panel
			autoPlay            : false,      // This turns off the entire slideshow FUNCTIONALY, not just if it starts running or not
			autoPlayLocked      : false,     // If true, user changing slides will not stop the slideshow
			delay               : 5000      // How long between slideshow transitions in AutoPlay mode (in milliseconds)
		}
	); // add any non-default options here
}); 

