var seconds=10; /* rotate every 10 seconds */
function rotate()
{
        var Quotation=new Array()

        // QUOTATIONS
        Quotation[0] = 'Excellent conference, good presenters, good facilities, and schedule worked very well. (David, Government of Yukon)';
        Quotation[1] = 'Of all the procurement organized Canadian conferences available, this is the one you want to attend if you are in public purchasing. (Kathleen, City of Airdrie, AB)';
        Quotation[2] = 'Public procurement is unique and this forum provides valuable information to any level of government. (Kathleen, City of Airdrie, AB)';
        Quotation[3] = 'Excellent networking opportunities with colleagues who have similar synergies. (Terry, McMaster University)';
		Quotation[4] = 'The conference content was excellent. (John, RCMP)';
        Quotation[5] = 'Very well organized, helpful, friendly, and all in all, a delightful experience. (John, RCMP)';
		Quotation[6] = 'Terrific opportunity to discuss strategic issues across the public procurement community. (Jack, Department of National Defence)'; 
		Quotation[7] = 'Excellent resource for keeping my procurement practice at its best! (Peter, Government of Newfoundland and Labrador)';
		Quotation[8] = 'Great conference! Good speakers and topics. (Delegate, 2007)';
		Quotation[9] = 'Significant investment by my organization with 7 delegates attending… happy to say we received good quality for money. (Delegate, 2007)';
		Quotation[10] = 'Excellent event with a high quality content enhanced by the knowledge, professionalism and integrity of the individual presenters. (Dasha, Government of Ontario)';
		Quotation[11] = 'Great place to return and learn. (Dasha, Government of Ontario)';
		Quotation[12] = 'Excellent conference and great venue for networking. (Claude, Public Works and Government Services Canada)';
		Quotation[13] = 'Après sept forums, j\'y trouve toujours autant d\'inspiration. Le réseautage ainsi que le contenu me permettent toujours d\'améliorer nos façons de faire. (Délégué(e), 2007)';
		Quotation[14] = 'Encore une fois félicitations pour un grand forum. J\'ai apprécié la durée des pauses très propices au réseautage et à la discussion sur les présentations encore fraîches à notre mémoire. (Francine, Travaux publics et Services gouvernementaux Canada)';
		Quotation[15] = 'Excellente occasion de réseautage, ce forum m\'a apporté des connaissances sur les processus des différents niveaux de gouvernement. (Diane, Agence de promotion économique du Canada Atlantique)';
		Quotation[16] = 'Ces forums sont toujours à la pointe des changements qui surviennent dans nos différents marchés. Ils nous permettent de ne pas être isolés lors de nos projets de développement. (Claude, Hydro-Québec)';
		Quotation[17] = 'Excellent conference. I’ve been to a few over my 30 years in the field and this was one of the BEST! (Delegate, 2009)';
		Quotation[18] = 'As someone new to the procurement world, Forum was a great opportunity to network. (Delegate, 2009)';
		Quotation[19] = 'Forum was a very good conference and I was glad to have made the trip. (Delegate, 2009)';
		Quotation[20] = 'I like that all the sessions were for the public sector, especially compared to other conferences. (Delegate, 2009)';
		Quotation[21] = 'Forum is a valuable tool in gaining a snapshot of what\'s being done across Canada. (Delegate, 2009)';
		Quotation[22] = 'You rock! (Delegate, 2009)';
		Quotation[23] = 'I appreciate Forum\'s focus on Public Procurement, it\'s why I attend. (Delegate, 2009)';
        var which = Math.round(Math.random()*(Quotation.length - 1));         document.getElementById('textrotator').innerHTML = Quotation[which];
}
function start()
{
  setInterval("rotate()",seconds*1000);
}