
// 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' : 100,
		// transition duration in seconds
		'transtime': .100,
		// slide time in seconds
		'slidetime': 5,
		// width of the slide (optional)
		'width' : 541,
		// height of the slide (optional)
		'height': 292,
		// 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 = [
		'images/church_front.jpg',
		'images/zumba.jpg',
		'images/india_mission_2012.jpg',
		'images/valentine_banquet-2012.jpg'
		];

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


