function Homepage_Content() {
/* 
Home animation content list. Edit only designatd sections as per provided examples. 
------------------------------------------------------------------------------------
	function contentArray = Homepage_Content()

	This function is used to read in graphics and project descriptions for each homepage project.
	Returns variable contentArray.
	Created: 9/01/07 -- tere
	Last Modified: 9/22/07 -- tere

*/

	var homeImage = new Array();
	var homeImageRt = new Array();
	var projectDescription = new Array();
	var projectLink = new Array();
	var graphicDirectory = "graphics/homepage/";
	
	/* define all project details here */
	/* ------------ BEGIN EDIT HERE -------------- */
	
	homeImageRt[0] 			= "201w_richmond_rt.jpg";
	homeImage[0] 			= "201w_richmond_lt.jpg";
	projectDescription[0] 	= "Historic Preservation and Structural Engineering<br>201 West Richmond, Point Richmond, CA";
	projectLink[0] 			= "http://www.eyetools.com";
	
	homeImageRt[1] 			= "baltic square_2_rt.jpg";
	homeImage[1] 			= "baltic square_1_lt.jpg";
	projectDescription[1] 	= "Architectural Services<br>Baltic Square, Point Richmond, CA";
	projectLink[1] 			= "http://www.eyetools.com";
	
	homeImageRt[2] 			= "ccc_child_dev_rt.jpg";
	homeImage[2] 			= "ccc_child_dev_lt.jpg";
	projectDescription[2] 	= "Architectural Services<br>Contra Costa College Child Development Center, San Pablo CA";
	projectLink[2] 			= "http://www.eyetools.com";
	
	homeImageRt[3] 			= "coit_tower_1_rt.jpg";
	homeImage[3] 			= "coit_tower_1_lt.jpg";
	projectDescription[3] 	= "Exterior Rehabilitation Design<br>Coit Tower, San Francisco, CA";
	projectLink[3] 			= "http://www.eyetools.com";
	
	homeImageRt[4] 			= "coit_tower_2_rt.jpg";
	homeImage[4] 			= "coit_tower_2_lt.jpg";
	projectDescription[4] 	= "Exterior Rehabilitation Design<br>Coit Tower, San Francisco, CA";
	projectLink[4] 			= "http://www.eyetools.com";
	
	homeImageRt[5] 			= "google_solar_rt.jpg";
	homeImage[5] 			= "google_solar_lt.jpg";
	projectDescription[5] 	= "Structural Engineering for Solar Installation<br>Google, Mountain View, CA";
	projectLink[5] 			= "http://www.eyetools.com";
	
	homeImageRt[6] 			= "lmc_child_dev_rt.jpg";
	homeImage[6] 			= "lmc_child_dev_lt.jpg";
	projectDescription[6] 	= "Architectural Services<br>Los Medanos Child Development Center, Pittsburg, CA";
	projectLink[6] 			= "http://www.eyetools.com";

	homeImageRt[7] 			= "macys_solar_rt.jpg";
	homeImage[7] 			= "macys_solar_lt.jpg";
	projectDescription[7] 	= "Structural Engineering for Solar Installation<br>Macy’s, NJ";
	projectLink[7] 			= "http://www.eyetools.com";
	
	homeImageRt[8] 			= "rich_tech_center_rt.jpg";
	homeImage[8] 			= "rich_tech_center_lt.jpg";
	projectDescription[8] 	= "Architectural Services<br>Richmond Tech Center, Richmond, CA";
	projectLink[8] 			= "http://www.eyetools.com";
	
	homeImageRt[9] 			= "stags_leap_1_rt.jpg";
	homeImage[9] 			= "stags_leap_1_lt.jpg";
	projectDescription[9] 	= "Architectural Services<br>Stag’s Leap Winery, Napa, CA";
	projectLink[9] 			= "http://www.eyetools.com";
	
	homeImageRt[10]			= "stags_leap_2_rt.jpg";
	homeImage[10] 			= "stags_leap_2_lt.jpg";
	projectDescription[10] 	= "Architectural Services<br>Stag’s Leap Winery, Napa, CA";
	projectLink[10]			= "http://www.eyetools.com";
	
	homeImageRt[11] 		= "walgreens_solar_rt.jpg";
	homeImage[11] 			= "walgreens_solar_lt.jpg";
	projectDescription[11] 	= "Structural Engineering for Solar Installation<br>Walgreens, CA and NJ";
	projectLink[11] 		= "http://www.eyetools.com";
	
	homeImageRt[12]			= "washington_school_rt.jpg";
	homeImage[12] 			= "washington_school_lt.jpg";
	projectDescription[12] 	= "Architectural Services<br>Washington Elementary School, Richmond, CA";
	projectLink[12]			= "http://www.eyetools.com";
	
	/* ------------ END EDIT HERE -------------- */
	
	choice = Math.floor(Math.random()*13); // select a random number between 0 and 9
	
	var contentArray = new Array(graphicDirectory + homeImage[choice], graphicDirectory + homeImageRt[choice], projectDescription[choice], projectLink[choice]);
	return (contentArray);

}