function HomeCommunity(){

// declare variables
	var image=new Array;
	var title=new Array;
	var teasertext=new Array;
	var link=new Array;
	var idx;
	
// image list - image shown on homepage - must be 180x130 pixels - images should be kept in the 'images_home_successstories' directory which is in the main 'images' directory
	image[0]="326.jpg";
	image[1]="325.jpg"; 
	image[2]="324.jpg"; 
	image[3]="323.jpg"; 
	image[4]="322.jpg"; 
	image[5]="320.jpg";
	image[6]="319.jpg";
	image[7]="318.jpg";
	
// title list - title of the story - no spaces after title
	title[0]="A dramatic entrance";
	title[1]="Sasha's Voice";
	title[2]="A roof over their heads";
	title[3]="Food for thought";
	title[4]="Independent and connected";
	title[5]="Collingwood kids go digital";
	title[6]="More than muffins";
	title[7]="Against all odds";
	
// teasertext list - story text 
	teasertext[0]="Seduction. That's what VanDusen Botanical Garden is aiming for with the new $19.4-million Visitor Centre.";
	teasertext[1]="Coping with brain injury."; 
	teasertext[2]="Surrey Rent Bank's loans of last resort help struggling families pay the rent.";
	teasertext[3]="Dishing up nutritional information in Vancouver's Downtown Eastside.";
	teasertext[4]="Volunteer drivers keep Langley seniors mobile.";
	teasertext[5]="Telling stories, with the help of a neighbourhood small grant.";
	teasertext[6]="Pre-teen cooking program at Frog Hollow is a recipe for building understanding, trust and the perfect chocolate mousse.";
	teasertext[7]="A commitment to youth leadership and personal courage mark Cia Ramirez as a powerful role model with a bright future.";
	
// link list - direct link to the story - stories should be kept in the 'successstories' directory
	link[0]="326";
	link[1]="325";
	link[2]="324";
	link[3]="323";
	link[4]="322";
	link[5]="320";
	link[6]="319";
	link[7]="318";

//Javascript functions - do not change anything below this line

// find random picture
	idx = Math.round(Math.random() * 100 * teasertext.length) % teasertext.length;

// write code
	document.write('<div id="home_community"><blockquote><img src="images/images_home_successstories/' + image[idx] + '" alt="" width="180" height="130" hspace="0" vspace="0" border="0" /><h2>' + title[idx] + '</h2><p>' + teasertext[idx] + '<br />[ <a href="http://www.vancouverfoundationstories.ca/story.php?recordID=' + link[idx] + '" title="Community Success Stories">More</a> ]</p></blockquote></div>');

}

