// JavaScript Document
var quotations = new Array()
quotations[0]= "Vega launches a Mathematics Center of Excellence on March 1st, 2007 at its Bangalore office. Vega is a world leader in Mathematics test item development."
quotations[1]= "Vega now offers an English Language and Arts (ELA) test writing service for K12."
quotations[2]= "Vega offered an assessment writers workshop on September 20th, 2007 at its office in Bangalore, India. The date for the next workshop will be announced shortly. Please contact Vega for more information."
quotations[3]= "Vega will be conducting an assessment writing workshop in Bangalore shortly."
function display()
{
a=Math.floor(Math.random()*quotations.length)
document.getElementById('quotation').innerHTML=quotations[a]
setTimeout("display()",8000)
}