
		var Quotation=new Array() // do not change this!

		Quotation [0] = "<i>\"Dr. Melanie is magical! I trust her ability to aid me through my continuous transformation and evolution in my life journey.\"</i><br><b>Audrey</b>"; 
		Quotation [1] = "<i>\"Network care is the most amazing transformational modality I have encountered in my life's quest for<br> physical, emotional, and spiritual<br>well being.\"</i><br><b>Mary Ross</b>"; 
		Quotation [2] = "<i>\"Network Spinal Care is the most powerful healing modality I've ever experienced. Since being diagnosed with cancer, I am amazed at how I can go in crying and come out laughing and grateful.\"</i><br><b>Nicole</b>"; 
		var Q = Quotation.length;
		var whichQuotation=Math.round(Math.random()*(Q-1));
		function showQuotation(){document.write(Quotation[whichQuotation]);}
		showQuotation();

