function HomeFundholder(){

// declare variables - do not change
    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]="lifeonthebench.jpg";
	image[1]="musicplayson.jpg";
	image[2]="275.jpg";
	image[3]="arthurerickson.jpg";
	image[4]="dalrichards.jpg";
	image[5]="tobeanornottobean.jpg";
	
	
// title list - title of the story - no spaces after title
	title[0]="Life on the bench"; 
	title[1]="The Music Plays On "; 
	title[2]="A spark of genius"; 
	title[3]="Arthur Erickson"; 
	title[4]="Dal Richards";
	title[5]="To bean or not to bean";
	
	
// teasertext list - story text - don't forget to set the "numberoflines" variable to ensure IE5/6 renders correctly
	teasertext[0]="Retired chief justice reflects on his time in the air and a career grounded in law."; 
	teasertext[1]="A memorial fund helps Vancouver Youth Symphony Orchestra musicians realize their dreams."; 
	teasertext[2]="Ad whiz James Lee may be gone, but he continues to inspire"; 
	teasertext[3]="\"It is the dialogue between building and setting that is the essence of architecture.\" - Arthur Erickson"; 
	teasertext[4]="The King of Swing.";
	teasertext[5]="That was the question for 25-year-old Rita Cheng.";
	
// link list - direct link to the story - stories should be kept in the 'successstories' directory
	link[0]="255"; 
	link[1]="237"; 
	link[2]="275"; 
	link[3]="251"; 
	link[4]="162";
	link[5]="155";
	

//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_fundholders"><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="Fundholder Success Stories">More</a> ]</p></blockquote></div>');

}