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

 $(document).ready(
				   
	function(){
		processSlideshow("#slideshow", slideShow, 2000, 1000);
		$("#slideshow").fadeOut(0);
		$("#slideshow").fadeIn(1000);
			
 		 
	}			   
);
