
var howMany = 11
var quote = new Array(howMany+1)
quote[0]="\"Marketing is not an event, but a process . . . It has a beginning, a middle, but never an end, for it is a process. You improve it, perfect it, change it, even pause it. But you never stop it completely.\" <br><br> - Jay Conrad Levinson"
quote[1]="\“Lots of people want to ride with you in the limo, but what you want is someone who will take the bus with you when the limo breaks down.\" <br><br> - Oprah Winfrey"
quote[2]="\“Creativity is the power to connect the seemingly unconnected.\" <br><br> - William Plomer"
quote[3]="\"Your brand's power lies in dominance. It is better to have 50% of one market, instead of 10% of five markets.\" <br><br> - Al Ries"
quote[4]="\“Business has only two basic functions - marketing and innovation.\" <br><br> - Peter Drucker"
quote[5]="\"Ordinary people can spread good and bad information about brands faster than marketers.\" <br><br> - Ray Johnson"
quote[6]="\"A product is something made in a factory; a brand is something that is bought by the customer. A product can be copied by a competitor; a brand is unique. A product can be quickly outdated; a successful brand is timeless.\" <br><br> - Stephen King, WPP Group, London"
quote[7]="\"Research is the process of going up alleys to see if they are blind.\" <br><br> - Marston Bates"
quote[8]="\"Authentic marketing is not the art of  selling what you make but knowing what to make. It is the art  of identifying and understanding customer needs and creating  solutions that deliver satisfaction to the customers, profits  to the producers and benefits for the stakeholders.\" <br><br> - Philip Kotler"
quote[9]="\"Customers buy for their reasons, not yours.\" <br><br> - Orvel Ray Wilson"
quote[10]="\"People don't want to be \"marketed  TO\"; they want to be \"communicated WITH.\" <br><br> - Flint McGlaughlin"
quote[11]="\"We are what we repeatedly do. Excellence, then, is not an act, but a habit.\" <br><br> - Aristotle"
function rndnumber(){
var randscript = -1
while (randscript < 0 || randscript > howMany || isNaN(randscript)){
randscript = parseInt(Math.random()*(howMany+1))
}
return randscript
}
quo = rndnumber()
quox = quote[quo]
document.write(quox)
