// *** BEGIN SCRIPT FOR FADING SLIDE SHOW ***
// 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': 50,
		// transition duration in seconds
		'transtime': 3.0,
		// slide time in seconds
		'slidetime': 10,
		// width of the slide (optional)
		'width': 207,
		// height of the slide (optional)
		'height': 465,
		// alt text for the image (optional)
		'alt': 'Slideshow',
		// css class assigned to the slide <img> (optional)
		'css': ''
	};

	// list of images to display
	var A_ITEMS = [
		'flash_banners/1.png',
		'flash_banners/2.png',
		'flash_banners/3.png',
		'flash_banners/4.png',
		'flash_banners/5.png',
		'flash_banners/6.png',
		'flash_banners/7.png',
		'flash_banners/8.png',
		'flash_banners/9.png',
		'flash_banners/10.png'						
	];

	// fader initialization	
	var mySlideShow = new imgFader (A_ITEMS, A_TPL);
// END SCRIPT FOR FADING SLIDE SHOW

