
// 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': 0,
		// slide time in seconds
		'slidetime': 2,
		// width of the slide (optional)
		'width' : 425,
		// height of the slide (optional)
		'height': 245,
		// alt text for the image (optional)
		'alt' : 'If you do not see the slideshow, please click on the above yellow bar and allow content to run.',
		// css class assigned to the slide <img> (optional)
		'css' : ''
	};

	// list of images to display
	var A_ITEMS = [
		'flash_banners/FPC_Outside_1.jpg',
		'flash_banners/FPC_Outside_2.jpg',
		'flash_banners/FPC_Outside_3.jpg',
		'flash_banners/FPC_Inside_1.jpg',
		'flash_banners/FPC_Inside_2.jpg',
		'flash_banners/FPC_Inside_3.jpg'
		
	];

	// fader initialization	
	var mySlideShow = new tFader (A_ITEMS, A_TPL);


