<!--
// ==============================================
// Copyright 2004 by CodeLifter.com
// Free for all; but please leave in this header.
// ==============================================

var Quotation=new Array() // do not change this!

// Set up the quotations to be shown, below.
// To add more quotations, continue with the
// pattern, adding to the array.  Remember
// to increment the Quotation[x] index!

Quotation[0] = "<p>\"Well organized, thoughtful, energetic and fun. Kathlynn McConnell is<br />one of the very best presenters.\"</p><h2>Ken Smith, City of Columbus, Ohio";
Quotation[1] = "<p>\"Kathlynn is a presenter who is unpretentious yet powerful. Everyone left<br />with new insights on living a more fulfilling life.\"</p><h2>Shar McBee, author of To Lead Is To Serve";
Quotation[2] = "<p>\"Kathlynn helped me recognize that a major source of my job stress is the conflict between my values and activities.  She helped me alleviate this stress.\"</p><h2>Sheila Manor, Social Worker/Case Manager</h2>";
Quotation[3] = "<p>\"Ms. McConnell's style is motivating, dynamic, inspirational! Her seminars are a must for all who want to take responsibility for balancing their life!\"</p><h2>Adrienne J. Kern, Mental Health Counselor";

Quotation[4] = "<p>\"When Kathlynn speaks, you can’t help but listen.  Her knowledge, wisdom, energy and style are captivating\"</p><h2>Mary L. Juntunen, Leadership Development Specialist,<br />Organizational learning & Development";
Quotation[5] = "<p>\"When walking by the door of the classroom I heard laughter and I knew Kathlynn was working her magic.  Kathlynn was engaging everyone in the discussion, providing support while making sure the participants were drawing upon their own experiences to deal with the questions asked.\"</p><h2>Jeannie Kermeen, Continuing Education and Customized Training";
Quotation[6] = "<p>\"I constantly refer back to many of the life skills that you presented in such a clever, lively way.  I found myself very engaged, stimulated, and highly entertained by your manner and very excellent way of presenting such important building blocks of a happy and rewarding life. I would not hesitate a moment to again ask you to be a keynote speaker at any type of meeting. Your way is so engaging and universal in its message and appeal.\"</p><h2>Jean Elton Turbes, MT (ASCP), MA,<br />Administrative Director";
Quotation[7] = "<p>\"Throughout the evening it was obvious that Kathlynn was passionate about providing the best program possible.  She has the wonderful ability to connect with and motivate her audience. Her presentation more than met our expectations and we hope to have her return as a presenter the next time we sponsor this event. Kathlynn is a motivated, dedicated, responsible and professional presenter.\"</p><h2>Mary Gallet, Employer Recruitment Coordinator";
Quotation[8] = "<p>\"Kathlynn is a very high-energy, dynamic, and highly professional personality who never fails to lift the spirits of every person she comes close to during the day. As a presenter she employs timely, related humor to drive participant enthusiasm and motivation. I can’t think of anyone who has a greater probability of driving change in the people she interacts with than Kathlynn.\"</p><h2>Cliff Tanner, MBA, SPHR,<br />Department of Administrative Services";
Quotation[9] = "<p>\"Kathlynn is a dynamic speaker and was well received by all members of our organization’s final meeting for the year.  If you want humor, energy, and inspiration, Kathlynn would be the speaker choice for you.\"</p><h2>Mary Anderson, Career Counselor";
Quotation[10] = "<p>\"I recently attended an workshop that was facilitated by Kathlynn McConnell from Lifestyle Consulting Services. In the past twelve years in my career I have attended many workshops, but this one given by Kathlynn was the best I have been to. I left feeling very uplifted and full of more knowledge.\"</p><h2>Bonnie, Job Coach";
Quotation[11] = "<p>\"Informative, interesting, thought-provoking…wonderful!\"</p><h2>Paula Noack, Trainer";

Quotation[12] = "<p>\"The visual aids and Kathlynn’s enthusiasm was wonderful.  I could have stayed all day.\"</p><h2>Session Participant";
Quotation[13] = "<p>\"The take-away from this session was 100%!\"</p><h2>Session Participant";
Quotation[14] = "<p>\"Kathlynn’s energy made everything so easy to relate to and gave me something to take back and practice.\"</p><h2>Session Participant";
Quotation[15] = "<p>\"This was one of the best sessions I have been to!\"</p><h2>Session Participant";
Quotation[16] = "<p>\"Absolutely a fantastic speaker.\"</p><h2>Session Participant";
Quotation[17] = "<p>\"Kathlynn’s enthusiasm is contagious.\"</p><h2>Session Participant";
Quotation[18] = "<p>\"Good life lessons learned—not just work lessons.\"</p><h2>Session Participant";
Quotation[19] = "<p>\"The many ideas and real-life examples helped me to understand how to make the information work in my life.\"</p><h2>Session Participant";
Quotation[20] = "<p>\"Articulate, friendly, bubbly and presents material well.\"</p><h2>Session Participant";
Quotation[21] = "<p>\"Excellent presentor – kept everyone interested and alert and learning.\"</p><h2>Session Participant";
Quotation[22] = "<p>\"Kathlynn – 'wise and insightful'. You can tell she believes in what she is saying.\"</p><h2>Session Participant";
Quotation[23] = "<p>\"Very interesting and helpful information to use in every day life. Kathlynn is an excellent speaker with a sense of humor and a wonderful personality.\"</p><h2>Session Participant";


var Q = Quotation.length;
var whichQuotation=Math.round(Math.random()*(Q-1));

function showQuotation(){
	//document.write(Quotation[whichQuotation]);
	var it = truncateLongQuotes( Quotation[whichQuotation] );
	document.write( it );
}

//hide tail of quotes longer than 270 chars, split by word
function truncateLongQuotes(longQuote) {
	if (longQuote.length > 270 ) {
		shortQuote = longQuote.substr(0,270);
		temp_word_split = shortQuote.split(" "); temp_word_split.pop();
		shortHTML = temp_word_split.join(" ") + "... [<a href='#' onclick='enlargeQuote();'>expand</a>] </p>";
	} else {
		shortHTML = longQuote;
	}
	return shortHTML;
}

showQuotation();

function enlargeQuote() {
	var div = document.getElementById('quotes');
	div.innerHTML = Quotation[whichQuotation];
	div.style.overflow = "visible";
	div.style.height = "auto";
	div.onclick = shrinkQuote;
}

function shrinkQuote() {
	var div = document.getElementById('quotes');
	div.style.height = "53px";
	div.style.overflow = "hidden";
	div.onclick = enlargeQuote;
}

//-->