// 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' : 6,
		// transition duration in seconds
		'transtime': .8,
		// slide time in seconds
		'slidetime': 4,
		// width of the slide (optional)
		'width' : 536,
		// height of the slide (optional)
		'height': 302,
		// alt text for the image (optional)
		'alt' : 'Cuyahoga Valley Church',
                              	// css class assigned to the slide <img> (optional)
		'css' : ''
	};

	// list of images to display
	var A_ITEMS = [
		"http://www.cvconline.org/imageindex/image1.jpg",
                                 "http://www.cvconline.org/imageindex/image2.jpg",
                                 "http://www.cvconline.org/imageindex/image3.jpg",                                 
                                 "http://www.cvconline.org/imageindex/image4.jpg",
                                 "http://www.cvconline.org/images/uploads/image5.jpg"
                                 
];

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

