// 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' : 16,
	// transition duration in seconds
	'transtime': .75,
	// slide time in seconds
	'slidetime': 12,
	// amount of time between fade out and fade in
	'pausetime': .5,
	// width of the slide (optional)
	'width' : 460,
	// height of the slide (optional)
	'height': 276,
	// alt text for the image (optional)
	'alt' : 'Equinix Employee Quotes',
	// css class assigned to the slide <img> (optional)
	'css' : 'tFader'
};
// list of images to display
var A_ITEMS = [
	{'img':'http://www.equinix.com/images/careers/quote_hiroko.jpg'},
	{'img':'http://www.equinix.com/images/careers/quote_jason.jpg'},
	{'img':'http://www.equinix.com/images/careers/quote_kelli.jpg'},
	{'img':'http://www.equinix.com/images/careers/quote_sascha.jpg'},
	{'img':'http://www.equinix.com/images/careers/quote_vijayakumar.jpg'}
];

// create the fader
new tFader (A_ITEMS, A_TPL);
