var quotations = new Array() quotations[0] = "Why did I wait so long before getting round to fishing!!" quotations[1] = "All I needed was the right encouragement to be able to take up a whole new hobby. I certainly got that with For Life Experiences." quotations[2] = "The course enabled all participants to achieve regardless of past experiences." quotations[3] = "Excellent organisation - High priority placed on health and safety. The young people have enjoyed the sessions immensly....... we have booked a further six sessions!" quotations[4] = "At less than £5 per hour per pupil i cant think of any improvements FLE can make. Great value......... great learning.......great fun!" function display() { a=Math.floor(Math.random()*quotations.length) document.getElementById('quotation').innerHTML= "“" + quotations[a] + "”" setTimeout("display()",25000) }