
// ==============================================
// 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] = "\"FLUX is really worth it. I feel so much more confident. Even though my team did not win, I know we have gained invaluable knowledge and experience.\" \<br>\<br> - Samuel Odekunle, University of Buckingham";
Quotation[1] = "\"I am now more employable with new skills, experience and confidence. And of course real links with some great companies.\" \<br>\<br> - Tom Denlegh-Maxwell, Oxford Brookes University";
Quotation[2] = "\"Great experience. I learned so much from the expert meetings.\" \<br>\<br> - Leo Xiuxing Chen, Royal Holloway, University of London";
Quotation[3] = "\"The organisation of the event was exceptional. The best I have been too.  And I met and chatted with really good business people.\" \<br>\<br> - Kyriakos Armenakis, University of Manchester";
Quotation[4] = "\"It really was an amazing experience, even though we didn't win, I felt that I gained so much from it.\" \<br>\<br> - Saira Mirza, Queen Mary, University of London";
Quotation[5] = "\"A challenging action-packed day that didn't stop.  Very well managed with meticulous planning of the event.  Mentally stimulating and a completely new and fantastic experience.\" \<br>\<br> - Nick Lowe, University of Lancaster";
Quotation[6] = "\"Valuable learning experience.  Thank you.  Met some great people, had a really good and different time. Probably put on 2lb from all the food!\" \<br>\<br> - Lara Leu, University of the West of England";
Quotation[7] = "\"Get involved! A beneficial interactive learning experience.\" \<br>\<br> - J Chlegg, University of Cambridge";
Quotation[8] = "\"It's one that all students should participate in because the knowledge and experience I gained is invaluable\" \<br>\<br> - Emmanuel Shoot, University of Hertfordshire";
Quotation[9] = "\"A really interesting and exciting competition.  Do it!  I will use Xing in my studies and in my work.\" \<br>\<br> - Beryl Fulilagi, University of Derby";
Quotation[10] = "\"FLUX has given me confidence in my ideas and the ability to express them clearly.  Great insight into business management.  Fantastic experience. I have learned a lot from this event.  It has given me the incentive to start my own business.  Thank you!\" \<br>\<br> - S.Amade, Univesity of Leeds";


// ======================================
// 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();
