// Random Quote Script

var arQuote = new Array(
"&#8220;The educational content, exchange of ideas, and intellectual environment I found at the conference exceeded my expectations and confirmed SAS' place as the premier data mining conference in the world.&#8221;", 
"&#8220;Right time. Right place. Right content.&#8221;", 
"&#8220;This was a superb environment - one of the smartest conference venues I have experienced (and I have experienced a lot).  The talks went into greater depth than the talks at many such meetings. Many of the talks were particularly valuable in shedding light on different application areas of data mining.&#8221;", 
"&#8220;This conference is definitely a must. Not only for the information, but for the opportunity it provides to exchange ideas and learn from your colleagues.&#8221;", 
"&#8220;The information I got from the presentations was great, and it was nice to talk to and exchange experiences with professionals who are pretty much doing the same thing.&#8221;",
"&#8220;What really impressed me was the sense of community that normally isn't present at conferences of this size.&#8221;",
"&#8220;The conference has opened a whole new world for me.&#8221;"
);

var arPerson = new Array(
"Thad Perry, Ph.D.<br>Senior Director of Infomatics", 
"Thomas Brauch<br>Vice President, Consumer eCommerce", 
"David Hand<br>Professor and Head of Statistics<br>Imperial College, London", 
"Daryl Berry<br>T-Mobile US", 
"Victor Alonso<br>Zurich Insurance Co",
"Brij Masand<br>Data Miners",
"Rachel Alt-Simmons<br>Hartford Life Insurance"
);

var num = Math.floor(Math.random() * arQuote.length);
document.write('<span class="quote">' + arQuote[num] + '</span><br>' + '<span class="quoteAttrib">' + arPerson[num] + '</span>');

//
