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 221x221 pixels - images should be kept in the 'images_home_successstories' directory which is in the main 'images' directory
	image[0]="havingaball.jpg";
	image[1]="fueling.jpg"; 
	image[2]="brushwiththepast.jpg"; 
	image[3]="delta.jpg"; 
	image[4]="yesyoucan.jpg"; 
	image[5]="tradition.jpg"; 
	
// title list - title of the story - no spaces after title
	title[0]="Having a ball";
	title[1]="Fueling the future";
	title[2]="A brush with the past";
	title[3]="Safeguarding the Delta";
	title[4]="Yes you can, can";
	title[5]="Tradition in the making and breaking ";
	
// teasertext list - story text - don't forget to set the "numberoflines" variable to ensure IE5/6 renders correctly
	teasertext[0]="It starts with one ball... dropping onto the hard gym floor at RayCam Community Center in East Vancouver...";
	teasertext[1]="Urban youth gain new skills restoring a piece of the past."; 
	teasertext[2]="Mabel Leung thinks anyone can learn to paint, if they are willing to observe and express themselves.";
	teasertext[3]="Trust preserves a way of life for farmers and birds.";
	teasertext[4]="Preserving your own food is in, and one B.C. community is on top of the trend.";
	teasertext[5]="The Bill Reid Gallery preserves a legacy and pushes boundaries.";
	
// link list - direct link to the story - stories should be kept in the 'successstories' directory
	link[0]="253";
	link[1]="252";
	link[2]="249";
	link[3]="257";
	link[4]="258";
	link[5]="256";

//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>');

}
