function didyouknow()
{
	var Quotation=new Array()
	var sec=6; //adjust rotation speed

	// QUOTATIONS
	Quotation[0] = 'We produced the ID cards for the by-law enforcement officers for the City of Elliot Lake.';
	Quotation[1] = 'We created the ID badge for <b>Harrison Ford</b> that was used in the movie <b>“Firewall”</b>.';
	Quotation[2] = 'We produced many ID card props for the popular Superman TV series <b>“Smallville”</b>.';
	Quotation[3] = 'Our experienced staffs have worked with Translink on the BC Transit passes and the U-Pass program for UBC and SFU.';
	Quotation[4] = 'We have produced ID cards for government agencies such as Western Economic Diversification and ICBC.';
	Quotation[5] = 'We created the ID cards for park enforcement officers for GVRD Region Parks.';
	Quotation[6] = 'One of the ID badges we produced for EMSI’s grand opening in Waco, Texas, was for <b>President George W. Bush</b>.';
	Quotation[7] = 'We had experience working with companies such as Enterprise Rent-A-Car, IGA, London Drugs, and Delta Airlines.';
	Quotation[8] = 'We have produced ID cards for police agencies such as Leander police, Spencer police, and Letcher county sheriff dept.';
	Quotation[9] = 'We produced the parking lot access cards for the film studio that shoots <b>“Stargate SG-1”</b>.';
	Quotation[10] = 'We have worked with YVR on their Valet Gateway card program.';

	var which = Math.round(Math.random()*(Quotation.length - 1));
	document.getElementById('textrotator').innerHTML = Quotation[which];
	
	setTimeout('didyouknow()', sec*1000);
}