var testimonial=new Array()
testimonial[0]="<p>\"Mac completely exceeded our expectations.\"</p><cite>Randy Byrne<br>VP Marketing<br>Malvern Instruments</cite>";
testimonial[1]="<p>\"A real pro. He gets the job done on time and on budget.\"</p><cite>Bob Derr<br>Partner<br>Vista Financial Advisors</cite>";
testimonial[2]="<p>\"Mac, your advice was worth its weight in gold. Thank you so much for helping us!\"</p><cite>Carolyn Chasteen<br>CPA, CIPT<br>IronWare Technologies</cite>";
testimonial[3]="<p>\"When it came to outsourcing of marketing services, Mac proved to be a real expert.\"</p><cite>Suzanne Jansson<br>Senior Director, Mktg. Comm.<br>Aspect Communications</cite>";
testimonial[4]="<p>\"Mac played a key role in launching our global lead management initiative. His perspective was invaluable.\"</p><cite>Cliff Langston<br>Director, Marketing Services<br>Sigma-Aldrich, Inc.</cite>";
testimonial[5]="<p>\"Within 24 hours after meeting with Mac, we were able to implement at least 5 action items resulting from our time with him.\"</p><cite>Anne-Claire McAllister<br>President<br>Accountnet</cite>";
testimonial[6]="<p>\"Mac focused our efforts in the areas that needed the most improvement and his advice has proven itself time and time again.\"</p><cite>Joan Welty<br>Director, Mktg. Comm.<br>AutomationDirect</cite>";
testimonial[7]="<p>\"Mac\'s the best. His diligence and focus on our company has allowed us to increase sales and give our competitors a run for their money!\"</p><cite>Claire Londress<br>Marketing Manager<br>American Harlequin</cite>";
testimonial[8]="<p>\"Mac is the sales lead expert. I have relied on his expertise for years at various companies where I have set up closed loop marketing systems.\"</p><cite>Charlie Shafton<br>Dir. of Demand Generation<br>Aspect Communications</cite>";
testimonial[9]="<p>\"Mac is no ordinary consultant. He doesn\'t profess theory, but actual tried and true, easy to understand principals that when implemented, work!\"</p><cite>Karen Brooks<br>Division Vice President<br>Qorpak</cite>";
testimonial[10]="<p>\"If you have limited marketing resources, be smart and invest some of it with Mac- you\'ll be very glad you did but more important, so will your sales people!\"</p><cite>Chris C. Houpis<br>Senior Director of Marketing<br>Newforma</cite>";
testimonial[11]="<p>\"Mac was able to understand our business, clarify our messages, optimize our website and present real ideas for our business that will yield profitable results.\"</p><cite>Ronald E. Lang<br>President<br>Majestic Consulting Group</cite>";
testimonial[12]="<p>\"Mac McIntosh has been an amazing resource for our organization. We could not have achieved this level of success without him. Try Mac, you will never look back!\"</p><cite>Paul Fountas<br>President<br>MicroComputer Resources</cite>";
testimonial[13]="<p>\"Mac spent two days with us and offered real actionable advice, advice that has already been successful for us.\"</p><cite>Peter Sanburn<br>Marketing Campaign Specialist<br>Itron, Inc.</cite>";
testimonial[14]="<p>\"Mac, you are a wealth of information for a business owner/marketing department. Thank you so much.\"</p><cite>Gia McNutt<br>CEO<br>Special Order Systems</cite>";

// set the pause (seconds)
var textpause=8;


// do not edit below this line
var i_text=0;
var tickercontent;
textpause*=1000;

var browserinfos=navigator.userAgent;
var ie=document.all&&!browserinfos.match(/Opera/);
var ns4=document.layers;
var ns6=document.getElementById&&!document.all&&!browserinfos.match(/Opera/);
var opera=browserinfos.match(/Opera/);
var browserok=ie||ns4||ns6||opera;

if (getcontent) {
getcontent();
}

function changecontent() {
	if (getcontent) {
	getcontent();
	}
	i_text++;
	if (i_text>=testimonial.length) {i_text=0}	
	if (ie) {
		ticker.innerHTML=content;
		setTimeout("changecontent()",textpause);
	}
	if (opera || ns6) {
		document.getElementById('ticker').innerHTML=content;
		var texttimer=setTimeout("changecontent()",2*textpause);
	}
	if (ns4) {
		document.roof.document.ticker.document.write(content);
		document.roof.document.ticker.document.close();
		var texttimer=setTimeout("changecontent()",textpause);
	}	
}


function getcontent() {
	if (ie || ns6) {	
		content="<blockquote>";
		content+=testimonial[i_text];
		content+="<\/blockquote>";
	}
	else {	
		content="<blockquote>";
		content+=testimonial[i_text];
		content+="<\/blockquote>";

		framecontent="";
	}
}


function showTestimonial() {
if (ie || ns6 || opera) {
	document.write("<div id=\"roof\">")	;
	document.write("<div id=\"ticker\">");
	document.write("<\/div><\/div>");

	window.onload=changecontent;
}

else if (ns4) {
	document.write("<ilayer name=\"roof\">");
		document.write("<layer name=\"tickerframe\">");
		document.write(framecontent);
		document.write("<\/layer>");
		document.write("<layer name=\"ticker\" top=0 left=0>");
		document.write();
		document.write("<\/layer>");
	document.write("<\/ilayer>");
	window.onload=changecontent;
}

}
