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

	// list of images to display
	var A_ITEMS = [
		'images/banner1.jpg',
		'images/CinMT.jpg',
		'images/WFMEFeast.jpg',
		'images/WildGameDinner2.jpg',
		'images/VBS2010.jpg',
		'images/EasterMusical.jpg',
		'images/KZCelebrate.jpg',
		'images/KZPinewood.jpg',
		'images/WarmHeart.jpg',
		'images/Baptism.jpg',
		'images/CPBCMarch18.jpg',
		'images/H202010.jpg',
		'images/ESLApril17.jpg',
		'images/18to24Launch.jpg',
		'images/banner2.jpg',
		'images/HHMentorNeeded.jpg',
		'images/FelCoffee.jpg',
		'images/STMSpainJuly3.jpg',
		'images/banner3.jpg',
		'images/NHVlntrs.jpg',
		'images/banner4.jpg',
		'images/banner7.jpg',
		'images/life2010collide.jpg'		
	];

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

