jQuery(document).ready(function(){
	
	jQuery('#headerslider').loopedSlider({
		
		container: "#headerslider", 		//Class/id of main container. You can use "#container" for an id.
		slides: ".slides", 			//Class/id of slide container. You can use "#slides" for an id.
		pagination: "pagination", 	//Class name of parent ul for numbered links. Don't add a "." here.
		containerClick: false, 		//Click slider to goto next slide? true/false
		autoStart: 10000, 				//Set to positive number for true. This number will be the time between transitions.
		restart: 8000, 				//Set to positive number for true. Sets time until autoStart is restarted.
		slidespeed: 600, 			//Speed of slide animation, 1000 = 1second.
		fadespeed: 800, 			//Speed of fade animation, 1000 = 1second.
		autoHeight: 0, 				//Set to positive number for true. This number will be the speed of the animation.
		addPagination: false 		//Add pagination links based on content? true/false
		
	});
	
	
});
