
		$(function(){
			$('#slides_three').slides({
				generateNextPrev: false,
				play: 8500,
				autoHeight: true
			});
			$('#slides_three2').slides({
				generateNextPrev: false,
				play: 7500,
				autoHeight: true
			});
			
			/*
				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
				});
			*/
		});


