// JavaScript Document
var elCentroPoster = new Array();
/**************************************************************************************************

	To create a new item, use the format below. Be sure to change the 0 to the next 
	number in the set (or replace it with whichever number was removed):
	
	elCentroPoster[0] = new Array('image name goes in here (with extension)', 'ALT 
	text goes here (for screen readers and search engines. Should contain text 
	similar to what is displayed on the image');
	
**************************************************************************************************/
elCentroPoster[0] = new Array('martiquote.jpg', '"-José Martí"');

// Do not change the folloring code:
function returnPoster()
{
	r_elCentroPoster = elCentroPoster;
	return r_elCentroPoster;
}
