
// configuration structure
	var A_TPL = {
		// randomize the array each time page loads
		'random' : false,
		// number of transparency changes during the transition
		//	increase for smoother transition, reduce for less CPU usage
		'steps' : 40,
		// transition duration in seconds
		'transtime': .8,
		// slide time in seconds
		'slidetime': 5,
		// width of the slide (optional)
		'width' : 505,
		// height of the slide (optional)
		'height': 263,
		// alt text for the image (optional)
		'alt' : 'Slideshow',
		// css class assigned to the slide <img> (optional)
		'css' : ''
	};

	// list of images to display
	var A_ITEMS = [
		'Media/Images/photo1.jpg',
		'images/praying.jpg',
		'images/Life.jpg',		
		'images/photo1.jpg',
		'images/photo2.jpg',
		'images/photo6.jpg',
		'Media/Images/seagrass.jpg',
		'images/photo5.jpg'
		];
	 //var A_ITEMS = [
		// 'images/Christmas/christmas028.jpg',
		 //'images/Christmas/wtwt64.jpg',		
		 //'images/Christmas/ttltgltem64.jpg',
		 //'images/Christmas/atws64.jpg',
		 //'images/Christmas/wtststwo64.jpg',
		 //'images/Christmas/ajwbibij64.jpg'
		 //];

	// fader initialization	
	var mySlideShow = new tFader (A_ITEMS, A_TPL);


