
// configuration structure
	var A_TPL = {
		// randomize the array each time page loads
		'random' : false,
		// number of transparency changes during the transition
		//	increase for smoother transition, reduce for less CPU usage
	'steps' : 65,
		// transition duration in seconds
		'transtime': .9,
		// slide time in seconds
		'slidetime': 4,
		// width of the slide (optional)
		'width' : 694,
		// height of the slide (optional)
		'height': 311,
		// alt text for the image (optional)
		'alt' : 'foto',
		// css class assigned to the slide <img> (optional)
		'css' : ''
	};

	// list of images to display
	var A_ITEMS = [
       'images/photo1.jpg',
		'images/photo5.jpg',
		'images/photo3.jpg',
		'images/photo4.jpg'
	    ];

	// fader initialization	
	var mySlideShow = new tFader (A_ITEMS, A_TPL);


