// INSTRUCTIONS:

// Put the following script in the <body> of your page,
// wherever you want the quotes to appear.  Simply set up the
// quotations in the Quotations[] array, then paste in the 
// whole block of code.  To format the text, wrap the usual
// font tags around the script.

// TECH NOTE:

// 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.

// ==============================================
// 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] = "I had heard horrible things about liposuction and the dangers. My number one priority was having a doctor with the right experience and a flawless rec...<br />&nbsp;&nbsp;&nbsp;&nbsp;-Julie, 35 Real Estate Agent";
Quotation[1] = "I gave birth to my twin boys eight years ago when I was 37 years old.  I gained a lot of weight during my pregnancy and couldn't lose the weight or tig...<br />&nbsp;&nbsp;&nbsp;&nbsp; - Amy, 45 Homemaker";
Quotation[2] = "I'm Asian and had thought about getting a breast augmentation for 6 years.  After talking with My Cosmetic Surgery Advisor, I finally decided to have the pro...<br />&nbsp;&nbsp;&nbsp;&nbsp; - Susie, 44 Marketing Executive";
Quotation[3] = "I thought I was too manly to get my eyes done but apparently I’m not the only one. It’s nice to know there’s a network of people out there who can help you...<br />&nbsp;&nbsp;&nbsp;&nbsp; - Ray, 56 Business Owner";
Quotation[4] = "I had heard horrible things about liposuction and the dangers. My number one priority was having a doctor with the right experience and a flawless rec...<br />&nbsp;&nbsp;&nbsp;&nbsp; - Julie, 35 Real Estate Agent";
Quotation[5] = "My only regret is that I’m sorry I waited so long to get my rhinoplasty; finally did in time for my 30th birthday! When searching on my own, I became so con...<br />&nbsp;&nbsp;&nbsp;&nbsp; - Janet, 30 Artist";

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

