function get_random()
{
    var ranNum= Math.floor(Math.random()*15);
    return ranNum;
}

function getaQuote()
{
   var whichQuote=get_random();

    var quote=new Array(5)
     quote[0]="A smashing success! Once again.";
     quote[1]="You could hear the crowd especially enjoyed it. There was a great feeling that you were together with the crowd.";
     quote[2]="Shark Attack was great. Crowd love that. Definitely the highlight.";   
     quote[3]="This is the interactive experience we've been looking for.";
     quote[4]="The Cinematrix simulation allows an audience to experience the power of their collective intelligence first hand.";
	 quote[5]="The experience needs to start with where their lives are at the present moment and take them into something not quite so ordinary. The Cinematrix interactive experience has done that."; 
     quote[6]="This is a powerful tool for awakening an organization's members to the untapped potential that lies within their grasp.";
     quote[7]="Our clients were thrilled with the Cinematrix game show segment.";
     quote[8]="After the show, I was told repeatedly that the Game Show was their favorite part.";
	 quote[9]="Everyone loves it. All ages laugh and have a good time. Now it brings people together."; 
	 quote[10]="Everyone is talking about the interactive game,  It is exciting and fun to play with the other people. They all have a good time."; 
	 quote[11]="The use of the Cinematrix Interactive Entertainment System worked beautifully for the children and adults."; 
	 quote[12]="The Cinematrix Interactive Entertainment System gets people to loosen up amazingly."; 
	 quote[13]="People of all ages from many countries enjoy these games. It is the latest in technology, but everyone is at the same level."; 
	 quote[14]="An incredible experience, great fun, and people really learned that they can work together."; 


	var clientname=new Array(5)
     clientname[0]="Mac McNally";
     clientname[1]="Helga Schwartz";
     clientname[2]="Jeremy";   
     clientname[3]="Frank Ward";
     clientname[4]="Richard Pascale";
	 clientname[5]="Patrick Besenval";
     clientname[6]="Richard Pascale";
     clientname[7]="Frank Ward";
     clientname[8]="Frank Ward";
	 clientname[9]="Patrick Besenval";
	 clientname[10]="Peter Higgins";
	 clientname[11]="Paul Oles";
	 clientname[12]="Jens Bley";
	 clientname[13]="Patrick Besenval";
	 clientname[14]="Garrick Jones";
 

	var company=new Array(5)
     company[0]="Executive Producer, Caribiner";
     company[1]="Local participant Linz, Austria";
     company[2]="Touch Business Consulting";   
     company[3]="Executive Producer, Altered Image";
     company[4]="Associate Fellow of Templeton College and Oxford University";
     company[5]="President du Director, Les Productions du Futuroscope";
     company[6]="Associate Fellow of Templeton College and Oxford University";
     company[7]="Executive Producer, Altered Image";
     company[8]="Executive Producer, Altered Image";
     company[9]="President du Director, Les Productions du Futuroscope";
     company[10]="President, Land Design";
     company[11]="Assistant Director for Omnimax, Planetarium &amp; Observatory, The Carnegie Science Center";
     company[12]="President, LAVA";
     company[13]="President du Director, Les Productions du Futuroscope";
	 company[14]="Partner, Ludic Group";
	 
   document.write('<p>&ldquo;' + quote[whichQuote] + '&rdquo;</p><p class="quotesrc"><strong>' + clientname[whichQuote] + '</strong><br />' + company[whichQuote] + '</p>');
  }