	   //define a javascript array that contains your images
		var slideShow = new Array()
		slideShow[0] = "images/1.jpg";
		slideShow[1] = "images/2.jpg";
		slideShow[2] = "images/3.jpg";
		slideShow[3] = "images/4.jpg";
		slideShow[4] = "images/5.jpg";
		slideShow[5] = "images/6.jpg";
		slideShow[6] = "images/7.jpg";
		slideShow[7] = "images/8.jpg";
		slideShow[8] = "images/9.jpg";

		function startSlideshow()
		{
              processSlideshow("#slideshow", slideShow, 2000, 1000);
        }

       $(document).ready(startSlideshow);

