// JavaScript Document


<!--
//store the quotations in arrays
quotes = new Array(3);
authors = new Array(3);

quotes[0] = "I have attended many trade shows and conferences but none have come close to <strong>emerge</strong>. The caliber of speakers and industry partners were very impressive. I applaud CGX on a great event!";
authors[0] = "Donn Greenberg<br />Project Management Institute";

quotes[1] = "The <strong>emerge</strong> conference was a day well spent. The sessions were packed full of relevant information. The presenters were inspiring and provided useful ideas that have been beneficial to my organization.";
authors[1] = "Dorina Marshall<br />Harland Clarke Marketing Services";

quotes[2] = "The <strong>emerge</strong> conference provided me with real-world solutions that I could take back to the office and implement immediately. The expert presenters were well selected. They had a depth of knowledge in their given fields and presented the information in an engaging, easy-to-understand manner. I highly recommend <strong>emerge</strong>.";
authors[2] = "Sunil Vyas<br />National Kidney Foundation";

//calculate a random index
index = Math.floor(Math.random() * quotes.length);
//-->



<!--
function MM_preloadImages() { //v3.0
  var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
    var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
    if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}
//-->