// 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] = "Silicone implants are again legal in America after a 14 year ban—What ... &nbsp;&nbsp; <a href=faq.html>more...</a>";
Quotation[1] = "The American Board of Plastic Surgeons (ABPS) is one of the twenty-fou... &nbsp;&nbsp; <a href=faq.html>more...</a>";
Quotation[2] = "Over 11.5 million cosmetic procedures were performed in the US in 2005... &nbsp;&nbsp; <a href=faq.html>more...</a>";
Quotation[3] = "The American Society of Plastic Surgeons (ASPS) and American Society f... &nbsp;&nbsp; <a href=faq.html>more...</a>";
Quotation[4] = "The top cosmetic surgery procedure in 2005 was liposuction. &nbsp;&nbsp; <a href=#>more...</a>";
Quotation[5] = "The generic term of “Board Certified” virtually means nothing. &nbsp;&nbsp; <a href=faq.html>more...</a>";
Quotation[6] = "In many metropolitan telephone directory books, less than 1/3rd of all... &nbsp;&nbsp; <a href=faq.html>more...</a>";
Quotation[7] = "Women represent over ninety percent (90%) of the total cosmetic surger... &nbsp;&nbsp; <a href=faq.html>more...</a>";


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

