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]="321.jpg";
	image[1]="301.jpg";
		
// title list - title of the story - no spaces after title
	title[0]="Life Lessons"; 
	title[1]="Ursula Botz"; 	
	
// teasertext list - story text - don't forget to set the "numberoflines" variable to ensure IE5/6 renders correctly
	teasertext[0]="What do you do after teaching 10,000 students? Well, if you're June Wilson, you help even more kids learn."; 
	teasertext[1]="A high-energy Crown Prosecutor turns her energy and drive to the community."; 
	
// link list - direct link to the story - stories should be kept in the 'successstories' directory
	link[0]="321"; 
	link[1]="301"; 	

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

}
