<!--

//CREATE ARRAY
var arrQuotes = new Array();
arrQuotes[0] = new Array("Working with Henriott Marketing Strategies allowed us to move forward with our go-to-market<BR>plan while we recruited a<BR>dedicated marketing executive.","Mike Landry<BR>Founder and CTO<BR>Servigistics");
arrQuotes[1] = new Array("By working with Henriott<BR>Marketing Strategies, we were<BR>able to accelerate timetables<BR>and deliver high quality<BR>marketing materials.","Lora Cecere<BR>Former VP of Marketing<BR>The Descartes<BR>Systems Group, Inc.");
arrQuotes[2] = new Array("We've used Henriott Marketing's coaching service to cover<BR>topics ranging from marketing<BR>plans to sales tactics. It's like<BR>having a marketing hotline<BR>available 24 hours a day.","Terri Herod<BR>Managing Director<BR>EMIL Georgia Tech");
arrQuotes[3] = new Array("We needed world-class<BR>marketing on a shoestring<BR>budget and Henriott Marketing<BR>Strategies delivered.","Tom Knight<BR>Chairman & Chief Strategy Officer<BR>Invistics");
//arrQuotes[4] = new Array("Revenues soared during the<BR>year that we worked with<BR>Henriott Marketing Strategies.<BR>Having strong market<BR>positioning and sales tools made<BR>our account executives much<BR>more effective.","Travis Parsons<BR>CEO<BR>Elogex");
arrQuotes[4] = new Array("Henriott Marketing Strategies<BR>played an instrumental<BR>role in building the foundation<BR>of the message for<BR>One Network Enterprises<BR>in its early stages.<BR>We were able to highlight our<BR>differentiation from the start,<BR>which generated our strong<BR>competitive position today.","Travis Parsons<BR>Executive Vice President<BR>One Network Enterprises");
arrQuotes[5] = new Array("Your advice has increased the<BR>effectiveness of our<BR>marketing efforts immensely.","Frank Fuerst<BR>President<BR>B2B Technologies");
arrQuotes[6] = new Array("Outsourcing to<BR>Henriott Marketing Strategies<BR>was key to our success.<BR>It provided us access to<BR>experienced marketing support<BR>at all levels:<BR>strategic, tactical and operational.","Brynn Conover<BR>President<BR>Radical Logistics");
arrQuotes[7] = new Array("By repositioning the company<br>and focusing the spotlight on<br>our successes, Henriott Marketing Strategies helped us raise our credibility and visibility in the market to a new level.","Michael Nark<BR>CEO<BR>GEOCOMtms");
arrQuotes[8] = new Array("We increased website traffic<br>by 58% and more than<br>doubled the number of leads<br>generated while working with<br>Henriott Marketing Strategies.","Dan Sobbott<BR>General Manager<BR>SLIM Technologies");

function rnd() {
	rnd.seed = (rnd.seed*9301+49297) % 233280;
	return rnd.seed/233280;
}

function rand(number) {
	//WILL NEVER REACH NUMBER
	return Math.floor(rnd()*number);
}

function getNumber(string) {
	var arrTemp = string.split("=");
	var intTemp = parseInt(arrTemp[1]);

	return intTemp;
}

function randomQuote() {
	//RANDOMLY SELECT ONE
	//rnd.today=new Date();
	//rnd.seed=rnd.today.getTime();
	//var tempChoice = rand(arrQuotes.length);

	//CHECK COOKIE AND SEQUENCE
	var tempChoice = getNumber(document.cookie);
	if (tempChoice && tempChoice < 9) {
		var intTemp = tempChoice;
		tempChoice++;
		document.cookie = "quote="+tempChoice;
		tempChoice = intTemp--;
	} else {
		tempChoice = 0;
		document.cookie = "quote=1";
	}

	//RETURN ANSWER
	return '<span class="sidebar"><img src="images/quote1.gif"><br>'+arrQuotes[tempChoice][0]+'</span><br><br><img src="images/quote2.gif"><br><br><font color="white">'+arrQuotes[tempChoice][1]+'</font>';
}

//-->
