
quote_1 = "This tool helped us focus on the idea on the table without chasing rabbit trails that kept us from reaching a decision.";

quote_2 = "Decide/Commit has become part of our everyday vocabulary.";

quote_3 = "Learning to collaborate as a team gave us an understanding of how to listen and to appreciate other members of the team.";

quote_4 = "We actually have more fun in difficult meetings when we use the cube.";

quote_5 = "I am not a patient person--using the cube has given me a tool for conducting productive meetings that really build consensus, not just snap decisions.";

quote_6 = "We actually have more fun in difficult meetings when we use the cube.";







//// PLEASE DO NOT CHANGE ANYTHING BELOW THIS ////
//// PLEASE DO NOT CHANGE ANYTHING BELOW THIS ////
//// PLEASE DO NOT CHANGE ANYTHING BELOW THIS ////
//// PLEASE DO NOT CHANGE ANYTHING BELOW THIS ////

var randomNum = Math.floor(Math.random()*6);

function quote()
{
    var quotes=new Array(6)
	
     quotes[0]= quote_1;
     quotes[1]= quote_2;
     quotes[2]= quote_3;   
     quotes[3]= quote_4; 
     quotes[4]= quote_5; 
     quotes[5]= quote_6;     
	 
   document.write(quotes[randomNum]);
}



