	// 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': 1,
		
		// slide time in seconds
		'slidetime': 6,
		
		// width of the slide (optional)
		'width' : 159,
		
		// height of the slide (optional)
		'height': 106,
		
		// 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/Pic-MenuSlide1.gif',
		'images/Pic-MenuSlide2.gif',
		'images/Pic-MenuSlide3.gif',
		'images/Pic-MenuSlide4.gif'
	];

	// fader initialization	
	var mySlideShow = new tFader (A_ITEMS, A_TPL);

