// JavaScript Document

var text = 0;

var message=new Array();
  message[0] = '"I enjoyed the casual soft selling approach to the day. I felt I had a chance to get to know some of the relevant vendors at both a professional and personal level. Overall I thought the session was terrific. The environment was top tier." - Managing Director, Fortune 500 Financial Institution'
message[1] = '"A very impressive event, the whole thing was first class. Assembling senior leadership, representing such a diverse cross-section of markets, is not an easy task. Kudos to your organization on such a successful event and my sincerest thanks for allowing me to be a part of it!" - VP Information Security, Financial Institution'  
message[2] = '"I\'ve already had follow up discussions with the vendors I met and I see promise for future business. The meetings were the perfect length of time and I learned a lot about some applications and products I thought I knew. I was impressed by the event, it was very well organized and executed." - SVP & CIO, Fortune 500 Wireless Service Provider' 
message[3] = '"The business concept is great. I thought that the survey to target my time was valuable. The conference staff did a great job in orchestrating a valuable event." - CISO, Healthcare Insurance Provider'
message[4] = '"I\'ve developed relationships over the last five hours that would\'ve taken me five years. My peers & partners that are here are first class!" - SVP, Telecommunications Network Leader'
message[5] = '"Coming to this conference, I was a little dubious. However this has turned out to be the highlight of the year (in events)" - Executive Director' 
message[6] = '"This is an event that has been built around us as the End-user. Why has no-one thought of doing this sooner!?" - SVP Information Security, Health Care Payor'
message[7] = '"Great topics, unbelievable attendance (at senior level) and great friends all under one roof... Thank you!" - VP'
message[8] = '"I thought it was great, the meetings were informative and the networking invaluable. I came home with a long to-do list of items. We\'re setting up a lot of meetings over the coming weeks to explore what I learned." – CIO, Healthcare Provider Organization'

function changeText() {
  if (message.length > 0) {
    document.change.descript.value=message[text];
    text++;
  }
  if (text == 8) {text = 0; }  // change the #8 at the left to the max # of message lines you want included
    window.setTimeout("changeText()", 8000); }  // change the # on the right to adjust the speed of the
                                               // scroll. The smaller the # the faster the speed

function addLoadEvent(func) {
  var oldonload = window.onload;
  if (typeof window.onload != 'function') {
    window.onload = func;
  } else {
    window.onload = function() {
      if (oldonload) {
        oldonload();
      }
      func();
    }
  }
}

addLoadEvent(function() {
  changeText();
});