$(function(){
			$('#slides').slides({
				generateNextPrev: false,
				play: 6500
			});
			$('#slides_two').slides({
				generateNextPrev: false,
				play: 8500
			});
		
			
			/*
				You could also combin them all
				But you can't customize each this way
				
				$('#slides,#slides_two,#slides_three').slides({
					preload: true,
					generateNextPrev: true
				});
			*/

			/*	
				Or use a class for all three
				If all three had class="slides"
				Same here can't customize each this way
				
				$('.slides').slides({
					preload: true,
					generateNextPrev: true
				});
			*/
		});
