// ==============================================
// 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!

//TECH NOTE:
//In quotation 8, note the text, \"beauty\" -- if you need
//to use double-quote " marks, you *must* precede each
//double-quote with a backslash \... otherwise the script will break.

Quotation[0] = "&quot;If you are yearning for an interesting change of career, achievable in a very short time, this is definitely what you should go for.&quot;";
Quotation[1] = "&quot;The Testing Academy provided me with the required roadmap for kick-starting a career in Software Testing.&quot;";
Quotation[2] = "&quot;The syllabus was comprehensive, giving an all round view of the subject.&quot;";
Quotation[3] = "&quot;Attending Testing Academy was a life changing event for me. The course of my life was changed...&quot;";
Quotation[4] = "&quot;I thought it was an excellent course, definitely value for money&quot;";
Quotation[5] = "&quot;Testing Academy offers one of the best Software Testing courses in the UK at the moment.&quot;";
Quotation[6] = "&quot;The course offers second to none industry standard and academic views on Software Development and Testing.&quot;";
Quotation[7] = "&quot;I enjoyed the software testing course so much I didn't want it to end, the tutor was witty and he made the learning easy and fun.&quot;";
Quotation[8] = "&quot;A very inspiring and practical course. A splendid environment for learning as the course is very interactive & students are encouraged to express their views and air their concerns.&quot;";
Quotation[9] = "&quot;Great value for money! You are not only paying for a course on Software Testing, but experience and mentorship that money can't buy.&quot;";


// ======================================
// 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();
