// JavaScript Document
var elCentroBanner = new Array();

/**************************************************************************************************

	To create a new item, copy the code below and paste it with the other 'elCentroBanner' items. Be sure to change the 0 to the next 
	number in the set (or replace it with whichever number was removed):
	
	
	//COPY THE BELOW CODE TO CREATE A NEW ITEM
	
	elCentroBanner[0] = new Array('IMAGE NAME', 'ALT TEXT');
	
	//COPY THE ABOVE CODE TO CREATE A NEW ITEM
	
**************************************************************************************************/
elCentroBanner[0] = new Array('1mural.jpg', 'we champion justice for all peoples');
elCentroBanner[1] = new Array('2foodbank.jpg', 'we embrace the needs of all peoples');
elCentroBanner[2] = new Array('3history.jpg', 'we celebrate the history of all peoples');
elCentroBanner[3] = new Array('4produce.jpg', 'we nurture the well-being of all peoples');
elCentroBanner[4] = new Array('5seniors.jpg', 'we enrich local services for all peoples');
elCentroBanner[5] = new Array('6building.jpg', 'we build community for all people');

//Do not change the following code:
<!-- 
if (document.images)
{
  pic1= new Image(851,287); 
  pic1.src='homepagebanners/' + elCentroBanner[0][0]; 

  pic2= new Image(851,287); 
  pic2.src='homepagebanners/' + elCentroBanner[1][0]; 

  pic3= new Image(851,287); 
  pic3.src='homepagebanners/' + elCentroBanner[2][0]; 
}
//-->


// Do not change the folloring code:
function returnBanner()
{
	r_elCentroBanner = elCentroBanner;
	return r_elCentroBanner;
}
