// ==============================================
// 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] = "\"Jim Sandino has a rich history of creating innovative solutions  to everyday challenges. His uncanny ability to build a multiplier effect across audiences  creates powerful results.\"<br><br><br><span class=byline>Frank Hone<br>Executive Vice President<br>Global  Business Group<br></span>";
Quotation[1] = "\"When you work with The Sandino Group, expect the unexpected. Jim sees the big picture strategically but has the tactical precision to plan and execute  creative, media, and response programs so that each marketing dollar works  harder.\"<br><br><br><span class=byline>Frank Hone<br>Executive Vice President<br>Global Business Group<br></span>";
Quotation[2] = "\"Today's competitive environment and market complexity create unconventional conundrums. The Sandino Group provides exceptional answers.\"<br><br><br><span class=byline>Frank Hone<br>Executive Vice President<br>Global Business Group<br></span>";
Quotation[3] = "\"Like a song within a symphony, Jim Sandino has the ability to weave  interventions into a canvass of marketing applications that consistently reinforce communication themes needed for a successful campaign.\"<br><br><br><span class=byline>Louis A. Morris, Ph.D.<br>Louis A. Morris &amp; Associates, Inc.<br></span>";
Quotation[4] = "\"I would heartily recommend the Sandino Group to businesses that  need a fresh perspective on their problems as well as an experienced mind that understands what is both necessary and sufficient for creating the awareness, motivation  and behavior needed to market their products and services.\"<br><br><br><span class=byline>Louis A. Morris,  Ph.D.<br>Louis A. Morris &amp; Associates, Inc.<br></span>";
Quotation[5] = "\"Jim's instinctive ability to see and conceptualize business  problems is remarkable. His application of creative solutions makes his recommendations  both welcome and advised.\"<br><br><br><span class=byline>Louis A. Morris, Ph.D.<br>Louis A. Morris &amp;  Associates, Inc.<br></span>";
Quotation[6] = "\"Half the money I spend on advertising is wasted&#59; the trouble is  I don't know which half.\"<br><br><br><span class=byline>John Wanamaker<br>US department store  merchant<br>(1838 - 1922)<br></span>";
Quotation[7] = "\"No one I’ve worked with, and I mean NO ONE, can see through to the  core issues facing a product better than Jim!\"<br><br><br><span class=byline>Bruce Houtman<br>Formerly  Senior Consumer Marketing Manager<br>Pharmacia Corp.<br></span>";
Quotation[8] = "\"What really separates Jim from the pack is his ability to translate  that insight into the most advantageous and cost-efficient campaign strategies &amp;  tactics.\"<br><br><br><span class=byline>Bruce Houtman<br>Formerly Senior Consumer Marketing  Manager<br>Pharmacia Corp.<br></span>";
Quotation[9] = "\"Jim proved to me that moving product doesn’t begin and end with  GRPs. His innovative approaches to media optimization helped me increase sales while  living with a reduced budget.\"<br><br><br><span class=byline>Bruce Houtman<br>Formerly Senior Consumer  Marketing Manager<br>Pharmacia Corp.<br></span>";

// ======================================
// 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]);}
showQuotation();
