var idx=0;

var quotes = new Array();

quotes[0] = '<p class="spinquote">"The speakers are always outstanding and it is very cool to see these folks in action after the session (Ernie Johnson, Robert Gates, Craig Sager, etc).  I even had a chance to work with one of your speakers (Andy Razeghi) on an innovation project.  These events are an awesome networking opportunity, the sessions have valuable and practical information and I know that everyone has a great time."</p><p class="spinclient"> Jamey Rootes, President of Business Operations, Houston Texans </p>'

quotes[1] = '<p class="spinquote" >The General Sports crew did it again with a superlative series of events.  You guys constantly over deliver on quality, class, professionalism, dynamite speaker lineup, and attention to detail with a whole lot of fun thrown in for good measure."</p><p class="spinclient"> Andy Dolich, President, Memphis Grizzlies </p>'

quotes[2] = '<p class="spinquote">"This is the single best conference that I attend every year.  You are making contacts and friendships that will help you grow without even knowing it.  And the speakers are always educational with a message that illuminates a truth that will make you better."</p><p class="spinclient"> Tom Wilson, President, Palace Sports and Entertainment (Detroit Pistons, Tampa Bay Lightning)</p>'

quotes[3] = '<p class="spinquote"> "Congratulations on another successful Sports Executive Leadership Conference.  The General Sessions were thought provoking and informative; the networking activities were first rate and the setting was spectacular.  You have succeeded in creating a must attend event for our industry."</p> <p class="spinclient">Ed Horne, President, NHL Enterprises</p>'

quotes[4] =  '<p class="spinquote" >"Far and away the most productive and valuable conference I have attended. The variety of topics presented by world class authorities combined with the industry leaders in attendance provided a great setting for personal and professional growth."</p><p class="spinclient"> Bill Duffy, Executive Vice President/Chief Financial Officer, Atlanta Spirit, LLC</p>'

quotes[5] =  '<p class="spinquote" >"The conference is exceptional.  The speakers are first rate and the access to the leaders in the sports industry is outstanding.  I would highly recommend the conference to anyone."</p><p class="spinclient"> Jim Scherr, Chief Executive Officer, United States Olympic Committee</p>'

quotes[6] = '<p class="spinquote" >"I have attended meetings and conferences that were good, bad, and mostly ugly.   You and your team have crafted the Mercedes of meetings.  The quality, class, professionalism and obvious attention to detail are the new standards in the sports industry."</p><p class="spinclient"> Andy Dolich, President, Memphis Grizzlies </p>'


function init_quote()
{
    return true; // disabled
  var q = document.createElement('div');
  q.id='quote';
  q.style.color = 'transparent';
  q.style.position = 'absolute';
  q.style.border = 'solid 1px #ccc';
  q.style.top = '220px';
  q.style.left = '100px';
  q.style.font = 'bold 10px verdana, sans-serif';


  var hd = document.getElementById('homecontainer');
  hd.appendChild(q);
  $('quote').style.backgroundColor='#000';
  $('quote').effect('opacity').set(0.0); 

  $('quote').innerHTML = quotes[idx] 
  $('quote').effect('color').start('#3f4243','#eee',{duration:3000} );
  
  idx +=1;
  if (idx==quotes.length)
      idx=0;
  
  $('quote').innerHTML = quotes[idx];
  $('quote').effect('opacity', {afterFinish: function(){ $('quote').effect('opacity').start(0.6,0)}   }).start(0,0.6);

  spin_quote.periodical(8000,window);



}

function spin_quote()
{
    idx +=1;
    if (idx==quotes.length)
        idx=0;
    
    $('quote').innerHTML = quotes[idx];
    $('quote').effect('opacity', {afterFinish: function(){ $('quote').effect('opacity').start(0.6,0)}   }).start(0,0.6);
}


window.addEvent('domready', function() {
init_quote();

}
);


