﻿
// 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' : 50,
		// transition duration in seconds
		'transtime': .1000000,
		// slide time in seconds
		'slidetime': 2,
		// width of the slide (optional)
		'width' : 270,
		// height of the slide (optional)
		'height': 182,
		// alt text for the image (optional)
		'alt' : 'Anyone can be a victim',
		// css class assigned to the slide <img> (optional)
		'css' : ''
	};

	// list of images to display
	var A_ITEMS = [
		'/images/SS1.jpg',
		'/images/SS2.jpg',
		'/images/SS3.jpg',
		'/images/SS4.jpg',
		'/images/SS5.jpg',
		'/images/SS6.jpg',
		'/images/SS7.jpg',
		'/images/SS8.jpg'		
		];

	// fader initialization	
	var mySlideShow = new tFader (A_ITEMS, A_TPL);


