function Didyouknow(){

	// declare variables
	var caption=new Array;
	var idx;
		
	// caption list
	caption[0]="In 1950, Vancouver Foundation distributed about $6,000. In 2007, we gave more than $60 million to communities in British Columbia.";
	caption[1]="Since 1943, Vancouver Foundation has distributed about $665 million to hundreds of community projects.";
	caption[2]="In 2007, Vancouver Foundation distributed approximately $60 million to communities.";
	caption[3]="Vancouver Foundation's support reaches across the province of BC. More than half of our Community and Donor Advised grants are distributed to communities outside the Lower Mainland.";
	caption[4]="Last year, more than $60 million was distributed to hundreds of organizations to strengthen communities and improve lives.";
	caption[5]="Since 1943, Vancouver Foundation has given away more money in grants than it has received in donations.";
	caption[6]="Vancouver Foundation is Canada's largest community foundation, and one of the oldest in North America.";
	caption[7]="Canadian community foundations manage almost $3 billion in assets - a permanent nest egg for Canadian communities.";
	caption[8]="In 2007, Canadians gave $348 million to community foundations - a 28% increase over 2006.";
	caption[9]="Community foundations are one of Canada's largest grantmakers, providing $176 million to a wide range of charities in 2007.";
	caption[10]="The non-profit sector is one of the largest employers in BC; larger than many other industrial sectors of the economy.";
	caption[11]="BC has the highest average number of hours volunteered per year in Canada, at 199 hours (the Canadian average is 168 hours).";
	caption[12]="British Columbia's non-profit and voluntary organizations reported 1.5 million volunteers. These volunteers contributed 114.3 million hours of work.";
	caption[13]="In 2006, 45% of British Columbians volunteered their time to a charitable and/or non-profit organization.";
	caption[14]="77% of BC residents donate to a charity. In Canada, the rate is 85%.";
	caption[15]="In 2006, 77% of British Columbians aged 15 and over made at least one direct financial contribution to charitable and non-profit organizations.";
	caption[16]="Among those who give to charity in BC, the average yearly donation per person is $467. In Canada, the average is $400.";
	caption[17]="There are 20,300 non-profit organizations in BC. Over 400 have chosen Vancouver Foundation to administer their endowment funds.";	
	
		// find random picture
	idx = Math.round(Math.random() * 100 * caption.length) % caption.length;

	// print picture
	document.write('<p>' + caption[idx] + '</p>');

}
