// ==============================================
// Copyright 2004 by CodeLifter.com
// Free for all; but please leave in this header.

//TECH NOTE:

//In quotation 8, note the text, \"beauty\" -- if you need
//to use double-quote " marks, you *must* precede each
//double-quote with a backslash \... otherwise the script
//will break.


// ==============================================

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] = "\"I came back with a wealth of knowledge.  I will never miss another convention planned by the Kellen Company.\" <br><br> -- Mike Levine, Blue Mountain Arts";

Quotation[1] ="\"As always, an excellent meeting – well organized.  Staff rates a 10 for being fast, efficient, and organized.\" <br><br> -- Kathy Lavanier, Nature's Finest";

Quotation[2] ="\"I've been at other industry meetings that I wished were as rewarding and as much fun.\" <br><br> -- Terry Plochman, Plochman's Premium Mustard";

Quotation[3] ="\"Our thanks to the entire Kellen team for another great job .\"  <br><br> -- Ken Lee, Ohio State University ";
 
Quotation[4] ="\"The Kellen Company team executes a tradeshow and meeting with the appearance of total ease and no hiccups.\"  <br><br> -- Pamela Bryant-Staufenbeil, Palm Springs Desert Resorts Convention and Visitors Authority ";

Quotation[5] ="\"You clearly have mastered the art of developing a productive conference both professionally and socially.\"   <br><br> -- Ken Romanzi, Nabisco";

Quotation[6] ="\"Your attention to detail, and your sensitivity to our business goals, really made a difference for me and the other Coke representatives.\"  <br><br> -- Ben Middleton, Coca-Cola Fountain";

Quotation[7] ="\"The Kellen Group has done a great job in their work with the National Candle Association.\"  <br><br> -- Tim Murphy<br>Cargill";

Quotation[8] ="\"Our organization conferences have grown more dynamic and shown increased profits with Kellen expertise. The Kellen Company Meeting Services are exceptional at contract negotiation; resulting in tremendous benefits to our organization.\"  <br><br> -- Catherine Proper<br>ConAgra";

Quotation[9] ="\"They are professional, know their business, are responsive, and are delightful partners with whom to work.  It is always a pleasure to work with the professionals at Kellen.\"  <br><br> -- Kathe Anderson <br>Delta Air Lines, Inc.";



// ======================================
// Do not change anything below this line
// ======================================
var Q = Quotation.length;
var whichQuotation=Math.round(Math.random()*(Q-1));
function showQuotation(){document.write(Quotation[whichQuotation]);}