var testimonial=new Array()
testimonial[0]="<p>\"Mac, you are an astonishing speaker.  After two days and 13 other sessions, you won everyone\'s vote for Best Speaker.\"</p><cite>Anne Holland<br>Publisher<br>MarketingSherpa.com</cite>";
testimonial[1]="<p>\"(Mac\'s seminar) was one of the best courses I\'ve attended.\"</p><cite>Julia Fuller <br>Partner <br>Shannon &amp; Associates</cite>";
testimonial[2]="<p>\"I really found (Mac\'s) seminar to be one of the best that\'s come around in a long time.\"</p><cite>Marissa Armour<br>Business Dev. Manager<br>Impact Management</cite>";
testimonial[3]="<p>\"When I bring an idea to Mac, he makes it better. Our web seminar attendees always come back for Mac.\"</p><cite>Anne Decker Wangthamkua<br>Director, Channel Marketing<br>Avalara</cite>";
testimonial[4]="<p>\"When you want a presenter who will make his presentation \'sing\' to your audience, call Mac McIntosh.\"</p><cite>Cynthia Esher<br>President<br>MCAA</cite>";
testimonial[5]="<p>\"I have been in sales and marketing for years and this is the best marketing seminar I have ever attended.\"</p><cite>Cyndy Giordano<br>Express Information Sys.</cite>";
testimonial[6]="<p>\"By following Mac\'s direction and handout notes, my revenue is already well on its way to surpassing last year.\"</p><cite>Gus Gikas<br>President<br>Computing Solutions Canada</cite>";
testimonial[7]="<p>\"Mac has spoken to our sales and marketing executives on four occasions. He consistently is rated as the top speaker. \"</p><cite>Michael Duff<br>Executive Director<br>ALSSA</cite>";
testimonial[8]="<p>\"It\'s been an absolute pleasure working with Mac. He delivers high quality, high impact events. Mac really knows his stuff!\"</p><cite>Sonja Maxwell<br>Partner Dev. Manager<br>Microsoft</cite>";
testimonial[9]="<p>\"I was skeptical about investing my time and money to get to New York, but found (Mac\'s) seminar was well worth the time and investment.\"</p><cite>David Stinner<br>President<br>US itek inc.</cite>";
testimonial[10]="<p>\"Mac\'s seminar achieved all I wanted and then some. One thing that mightily impressed me was the homework and preparation Mac had done.\"</p><cite>Robert K. Dagger<br>CEO<br>Harlequin Group</cite>";
testimonial[11]="<p>\"I came away with lots of ideas, tips and techniques for generating, nurturing and qualifying sales leads that I could put to work right away.\"</p><cite>Dave Bodnarchuk<br>President<br>eventIQ Inc.</cite>";
testimonial[12]="<p>\"Our attendees said Mac gave them solid, useful marketing tools and techniques. Mac\'s professional style and friendly disposition made him a joy to work with.\"</p><cite>Gina Mead<br>Product Marketing<br>Sage Software</cite>";
testimonial[13]="<p>\"I learned more in (Mac\'s) Marketing Boot Camp session than I learned in all of the combined marketing education sessions I\'ve attended in the last twenty years.\"</p><cite>Kevin Horner<br>VP Sales and Marketing<br>Borek and Associates, Inc.</cite>";
testimonial[14]="<p>\"You were absolutely outstanding! Really! You were a tremendous hit with our audience and we were very fortunate to have you as our closing keynote speaker.\"</p><cite>Bob Cargill<br>Past President and NEDMA '06 Conference Co-Chair<br>New England Direct Marketing Association</cite>";
testimonial[15]="<p>\"We're just starting to get serious about marketing, so the timing of Mac's course was perfect. His practical, real world experience for driving sales with marketing has provided some great ideas and will certainly help us spend our budget more effectively.\"</p><cite>Andrew Steane<br>Director, Marketing &amp; Alliances<br>imason inc.</cite>";
testimonial[16]="<p>\"I just finished (Mac's) marketing boot camp this afternoon. All I can say is it was AWESOME!!! and an excellent use of our time.\"</p><cite>Michael Noel<br>Creative 2000 Computer Solutions</cite>"; 


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


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

var oneloopfinished=false;
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;
}

}
