
quote_1 = "The DECK is easy to use and the exercises create energy and creativity in the process. It gets people to truly begin thinking about what they are involved in vs. just saying things are OK.";

quote_2 = "It moves everyone on the team towards the vision--so all are going the same direction.";

quote_3 = "The DECK visually and mentally challenges the individual and the team.";

quote_4 = "Simple, creative, action oriented, the cards force one to think.";

quote_5 = "Great, snappy, thoughtful - nice quick prep. Good ideas.";

quote_6 = "Simple and easy ways to work on vision and culture as a team.";












//// 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]);
}



