// JavaScript Document
	
	// 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': .5,
		// slide time in seconds
		'slidetime': 3,
		// width of the slide (optional)
		'width' : 460,
		// height of the slide (optional)
		'height': 406,
		// alt text for the image (optional)
		'alt' : 'Soft Clogs - prices from $29.95 to $39.95',
		// css class assigned to the slide <img> (optional)
		'css' : 'noBorder'
	};

	// list of images to display
	var A_ITEMS = [
		'img/softclogs_red.jpg',
		'img/softclogs_white.jpg',
		'img/softclogs_yellow.jpg'
	];

	// fader initialization	
	var mySlideShow = new tFader (A_ITEMS, A_TPL);

