	// 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' : 60,
		// transition duration in seconds
		'transtime': 2,
		// slide time in seconds
		'slidetime': 5,
		// width of the slide (optional)
		'width' : 290,
		// height of the slide (optional)
		'height': 180,
		// alt text for the image (optional)
		'alt' : '',
		// css class assigned to the slide <img> (optional)
		'css' : ''
	};

	// list of images to display
	var A_ITEMS = [
		'images/slideshow/slide0.jpg',
		'images/slideshow/slide1.jpg',
		'images/slideshow/slide2.jpg',
		'images/slideshow/slide3.jpg',
		'images/slideshow/slide4.jpg'
	];

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