//define a javascript array that contains your images
	var slideShow = new Array()
	slideShow[0] = "images/201009_01.jpg";
	slideShow[1] = "images/201009_02.jpg";
	slideShow[2] = "images/201009_03.jpg";

	function startSlideshow() {
		processSlideshow("#slideshow", slideShow, 4500, 1200);
	}

	$(document).ready(startSlideshow);
