function Didyouknow(){

	// declare variables
	var caption=new Array;
	var idx;
		
	// caption list
	caption[0]="In 1950, Vancouver Foundation distributed about $6,000. In 2009, we gave $61 million to communities in British Columbia.";
	caption[1]="Since 1943, Vancouver Foundation has distributed $786 million to hundreds of community projects.";
	caption[2]="In 2009, Vancouver Foundation distributed $61 million to communities.";
	caption[3]="Vancouver Foundation's support reaches across the province of BC. More than half of our grants are distributed to communities outside the Lower Mainland.";
	caption[4]="Last year, $61 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 more than $2.85 billion in assets - a permanent nest egg for Canadian communities.";
	caption[8]="In 2009, Canadians gave $194 million to community foundations.";
	caption[9]="Community foundations are one of Canada's largest grantmakers, providing $140 million to a wide range of charities in 2009.";
	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]="There are 12,000 registered charities in BC. Over 500 have chosen Vancouver Foundation to administer their endowment funds.";	
	caption[12]="Community foundations are among the top granting organizations in almost every province in Canada.";	
	
	// find random picture
	idx = Math.round(Math.random() * 100 * caption.length) % caption.length;

	// print picture
	document.write('<p>' + caption[idx] + '</p>');

}
