var quotations = new Array()
quotations[0]= "Its great working with the team, they have a professional approach. &nbsp;<b>Nilanjana (AUI)</b>"
quotations[1]= "SENABI provided me the best solution and consultancy for my venture &nbsp;<b>S.Rastogi (WOBO)</b>"
quotations[2]= "Good to work with, delivered on his promise in a very timely manner. &nbsp;<b>Jeylan Kasiem</b>"
function display()
{
a=Math.floor(Math.random()*quotations.length)
document.getElementById('quotation').innerHTML=quotations[a]
setTimeout("display()",4000)
}
