// JavaScript Document
var quotations = new Array()
quotations[0]= "<em>&ldquo;They are very entrepreneurial. They love a new challenge and they'll always find a way. Very solutions oriented&rdquo;</em><br/><br /><strong>Magda Marquet</strong><br /><p>Founder, Althea Technologies Inc.</p>"

function displaySlideshow()
{
a=Math.floor(Math.random()*quotations.length)
document.getElementById('quotation').innerHTML=quotations[a]
setTimeout("displaySlideshow()",10000)
}