/* author: Zuhause Web Werks */
/* Creation date: 02.27.03 */
/*==============================================================================================================

This script is used to randomly write in quotations. Quotes are listed in the quoteArray below. Pay close attention to
the formatting of each item. A new quote can be easily added to the end of the list. The order of the quotes does not matter
because they are randomized, but array numbers must be kept in order. Add a quote with the following syntax:

--Single line quote example--
quoteArray[XX] = "Your quote text goes here. All quotation marks, and backslashes need a backslash (\) if front of them.";

--Multi-line quote example--
quoteArray[XX] = "Your quote text goes here. All quotation marks need a backslash (\) if front of them. You can add HTML as long" +
				 "as you escape(\) any quotes in the tag attributes. Always end the ENTIRE QUOTE with a double-quote and semi-colon like this";
		(XX = next number in the quoteArray)
		
*===============================================================================================================*/


quoteArray = new Array();

quoteArray[0] = "\"C&A addressed our every concern regarding the purchase of our home. We will not hesitate to refer people to you in the future.\"<br><div align=\"right\">- Dave Anderson, CA</a></div>";
quoteArray[1] = "\"Great job on the whole process, flawless and well organized. C&A is a model to its profession.\"<br><div align=\"right\">- Ariella Levitan, CA</div>";
quoteArray[2] = "\"C&A treated us with professionalism and responsiveness. It was a relaxing and stress-free experience.\"<br><div align=\"right\">- Teresa Copeland, OR </a></div>";
quoteArray[3] = "\"C&A assisted us with every step of our first home purchase. We realized how simple the purchase of a home could be.\"<br><div align=\"right\">- Tim McMichael, WA </a></div>";
quoteArray[4] = "\"Hugh, thank you so much for the box of cookies you sent... refinancing our home was a pleasant experience.\"<br><div align=\"right\">- Mark & Carol Miller, CA </a></div>";


/* this is the random number generator - it is multiplied by the number of quote items */
var intRandNum=Math.floor(Math.random()*(quoteArray.length));

/* this line writes in the quote. To change the applied CSS style of the quote change the class="style_name" attribute */
document.write("<div class=\"content_bar\">"+quoteArray[intRandNum]+"</div>");