
function getQuote(){
var ar = new Array(4)
ar[0] = "Perfect for learning the fundamentals with a few fun techniques as a bonus."
ar[1] = "I find your courses very well prepared, highly constructive.  Your approach is very holistic.  You are a good listener and are not afraid to share your expertise."
ar[2] = "This course is essential for anyone wanting to move beyond 'point and shoot."
ar[3] = "This is one of the best courses I have been on...the exercises and practical helped me actually \'get it\' finally."
ar[4] = "Harry was excellent... able to answer simple questions with lots of patience!"
ar[5] = "Great pace, logical sequence, good exercises..."

var randomnumber=Math.floor(Math.random()*4)

document.write(ar[randomnumber]);
}
