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]="276.jpg";
	image[1]="279.jpg"; 
	image[2]="278.jpg"; 
	image[3]="282.jpg"; 
	image[4]="268.jpg"; 
	image[5]="273.jpg"; 
	
// title list - title of the story - no spaces after title
	title[0]="The long and winding road";
	title[1]="Pumping up";
	title[2]="Rough Trade";
	title[3]="Dying to be clean";
	title[4]="Reclaiming the Revue";
	title[5]="Caring for Briana";
	
// teasertext list - story text - don't forget to set the "numberoflines" variable to ensure IE5/6 renders correctly
	teasertext[0]="One woman's monumental journey across a continent becomes the subject of a new opera";
	teasertext[1]="UBC study shows it's smart for seniors to pump iron"; 
	teasertext[2]="HUSTLE helps young men get out of the sex trade";
	teasertext[3]="Toxic-free Canada educates people about dangerous chemicals in everyday use";
	teasertext[4]="Arts Club gives life to new plays";
	teasertext[5]="Giving in Action helps one family cope with disability";
	
// link list - direct link to the story - stories should be kept in the 'successstories' directory
	link[0]="276";
	link[1]="279";
	link[2]="278";
	link[3]="282";
	link[4]="268";
	link[5]="273";

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

}
