//============================================================
//Script:     Random Quote
//
//Functions:  This simple script allows you to print random
//            quotations in the page.  Any number of quotes
//            may be used.
//           
//Browsers:   All
//
//Author:     etLux
//============================================================
//
//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 (view source on our demo on this
//page for an example.)
//
//TECH NOTE:
//
//If you need to use double-quote " marks, you *must* precede each
//double-quote with a backslash \... otherwise the script
//will break.
//
//THE CODE:
//
// ==============================================
// 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] = "<p>&#8220;My best friend recommended Dean Safe Company. Great staff and products, all the safes they have are currently in inventory.&#8221;<br /><span id=\"custquoteattrib\">Kerry, Lake Arrowhead, CA</span></p>";
Quotation[1] = "<p>&#8220;Dean Safe Company's staff were pleasant and helpful in helping me choose my purchase.&#8221;<br /><span id=\"custquoteattrib\">Walt, Sierra Madre, CA</span></p>";
Quotation[2] = "<p>&#8220;Dean Safe Company's staff made me feel safe with my purchase. Delivery was quick and instructions on using my purchase were perfect.&#8221;<br /><span id=\"custquoteattrib\">Kay, Van Nuys, CA</span></p>";
Quotation[3] = "<p>&#8220;Dean Safe Company's staff were very knowledgeable about the products, they had a large variety to choose from.&#8221;<br /><span id=\"custquoteattrib\">Gary, Temecula, CA</span></p>";
Quotation[4] = "<p>&#8220;I chose to buy from Dean Safe, because of their selection and product quality. They will be there to answer future questions and to service my purchase later down the road.&#8221;<br /><span id=\"custquoteattrib\">Adam, Stevenson Ranch, CA</span></p>";
Quotation[5] = "<p>&#8220;Dean Safe's employees know the products. All-around service from purchase to delivery was great.&#8221;<br /><span id=\"custquoteattrib\">Gary, Agoura, CA</span></p>";
Quotation[6] = "<p>&#8220;Easy to order and when I had a question they were quick to answer my questions. I would use Dean Safe again.&#8221;<br /><span id=\"custquoteattrib\">Mike, Sonora, CA</span></p>";
Quotation[7] = "<p>&#8220;Great product, works great I have recommended to many of my friends.&#8221;<br /><span id=\"custquoteattrib\">Chris, Westchester, OH</span></p>";
Quotation[8] = "<p>&#8220;I truly enjoyed working with Dean Safe Company. The order was processed quickly and I even received a kind email informing me personally that the item had shipped. Thank you&#8221;<br /><span id=\"custquoteattrib\">Carrie, San Mateo, CA</span></p>";
Quotation[9] = "<p>&#8220;A relatively heavy safe was provided with good cushioning in the shipping container, and it was well packed overall. A great price value and, as equally important, the merchandise arrived well packed and in great condition.&#8221;<br /><span id=\"custquoteattrib\">Robs, Sterling, VA</span></p>";
Quotation[10] = "<p>&#8220;Dean Safe carries top of the line products and they were patient and accommodating of my needs.&#8221;<br /><span id=\"custquoteattrib\">Josh, Glendale, CA</span></p>";
Quotation[11] = "<p>&#8220;Dean Safe delivered quickly; well packed. Quality item. I'm satisfied!&#8221;<br /><span id=\"custquoteattrib\">Lynda, Buena Vista, CO</span></p>";
Quotation[12] = "<p>&#8220;Dean Safe's utmost concern for customer service was amazing, it is not found anywhere nowadays, unless you are in a high end luxury retail store! My purchase was completed within three days&#8221;<br /><span id=\"custquoteattrib\">Jose, Camarillo, CA</span></p>";

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