// JavaScript Document

<!--
	question = new Array(10);
	
	question[0] = '<a href="http://www.communicators.com/services.html">Do you want to be the "go to" organization or "voice of the industry?"</a>'
	question[1] = '<a href="http://www.communicators.com/services.html">Do you see technology changing the functions and core of your organization?</a>'
	question[2] = '<a href="http://www.communicators.com/services.html">Are you ready to venture outside the box to thinking new ways about marketing and communications?</a>'
	question[3] = '<a href="http://www.communicators.com/services.html">Do you need a way to "pull it all together" to fit your mission and attract customers?</a>'
	question[4] = '<a href="http://www.communicators.com/services.html">Do you need to create new customers or increase your membership?</a>'
	question[5] = '<a href="http://www.communicators.com/services.html">Do you need clear, direct communications with your customers?</a>'
	question[6] = '<a href="http://www.communicators.com/services.html">Do you need your strategic plans of action turned into tangible results?</a>'
	question[7] = '<a href="http://www.communicators.com/services.html">Do you need simple, effective, and affordable marketing?</a>'
	question[8] = '<a href="http://www.communicators.com/services.html">Do you need each person in your organization to be "an army of 10"?</a>'
	question[9] = '<a href="http://www.communicators.com/services.html">Do you need iterative project management driven by your vision?</a>'
	
	index = Math.floor(Math.random() * question.length);
	document.write(question[index] + "\n");
	//done
		
// -->

