// 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' : 25,
		// transition duration in seconds
		'transtime': .15,
		// slide time in seconds
		'slidetime': 2,
		// width of the slide (optional)
		'width' : 250,
		// height of the slide (optional)
		'height': 438,
		// 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/13oclock09.jpg',
		'/slideshow/appletree04.jpg',
		'/slideshow/barefoot03.jpg',
		'/slideshow/betrayal09.jpg',
		'/slideshow/blithespirit03.jpg',
		'/slideshow/butler09.jpg',
		'/slideshow/crimes2-08.jpg',				
		'/slideshow/earnest05.jpg',
		'/slideshow/esclove10.jpg',
		'/slideshow/fully-committed10.jpg',
		'/slideshow/hatemail09.jpg',
		'/slideshow/hayfever09.jpg',
		'/slideshow/hedda10.jpg',
		'/slideshow/luckyspot03.jpg',
		'/slideshow/misanthrope05.jpg',
		'/slideshow/moonlight09.jpg',
		'/slideshow/peggarrick04.jpg',
		'/slideshow/pov10.jpg',
		'/slideshow/pov1-09.jpg',
		'/slideshow/rappaport05.jpg',
		'/slideshow/schoolforscandal08.jpg',
		'/slideshow/towyarddreams04.jpg',
		'/slideshow/two-white-chicks05.jpg',
		'/slideshow/veronicasroom07.jpg',
		'/slideshow/wonder-of-the-world07.jpg'
	];

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


