// JavaScript for fading slideshow on homepage

	// 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' : 20,
		// transition duration in seconds
		'transtime': .15,
		// slide time in seconds
		'slidetime': 1,
		// width of the slide (optional)
		'width' : 300,
		// height of the slide (optional)
		'height': 400,
		// alt text for the image (optional)
		'alt' : '',
		// css class assigned to the slide <img> (optional)
		'css' : ''
	};

	// list of images to display
	var A_ITEMS = [
		'/slideshow/CW0002.jpg',
		'/slideshow/CW0003.jpg',
		'/slideshow/CW0005.jpg',
		'/slideshow/CW0006.jpg',
		'/slideshow/CW0007.jpg',
		'/slideshow/DG0001.jpg',
		'/slideshow/DG0002.jpg',		
		'/slideshow/DG0006.jpg',		
		'/slideshow/DG0010.jpg',		
		'/slideshow/DG0015.jpg'
	];

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

