
// ==============================================
// Copyright 2004 by CodeLifter.com
// Free for all; but please leave in this header.
// ==============================================

var Quotation=new Array() // do not change this!

// Set up the quotations to be shown, below.
// To add more quotations, continue with the
// pattern, adding to the array.  Remember
// to increment the Quotation[x] index!

Quotation[0] = "\"A great experience for any wannabe entrepreneur.  It was so encouraging to see such enthusiasm, ideas and teamwork\" \<br>\<br> - Kate Marshall";
Quotation[1] = "\"It was really encouraging to find such enthusiastic and innovative approaches from such a wide variety of people.\" \<br>\<br> - Sir Robin Young, Former Private Secretary to the DTI";
Quotation[2] = "\"Fantastic event, thoroughly enjoyed it.\" \<br>\<br> - Gonzallo Trujillo, Global Renewables";
Quotation[3] = "\"I think this is a terrific event for all involved, and very well organised. Thanks for inviting me.\" \<br>\<br> - Jackie Colligan, Health Centred";
Quotation[4] = "\"Great to see young bright people develop business ideas.  Great fun, great learning in a real life situation.\" \<br>\<br> - Carolyn Crook";
Quotation[5] = "\"It was a very interesting and enjoyable day. Great to meet the students and great to meet some \"friendly dragons\".\" \<br>\<br> - Stephen Wood, Gatwick Diamond Hub.";
Quotation[6] = "\"I thoroughly enjoyed the day and could see the improvement of the students towards the end. I would love to take part in any other events happening.\" \<br>\<br> - Sarah Walmsley, we{do} business";


// ======================================
// Do not change anything below this line
// ======================================
var Q = Quotation.length;
var whichQuotation=Math.round(Math.random()*(Q-1));
function showQuotation(){document.write(Quotation[whichQuotation]);}
showQuotation();
