﻿var Quotation=new Array()
var Owner=new Array()
var Business=new Array()
var URL=new Array()
            //Dr. Bev Browning
                Quotation[0] = "\"I have used Nedda Accountant for over a decade. Nedda is an expert who provides GREAT services! She is patient, knowledgeable, diligent, capable, and available. Stop dealing with CPAs and paying high fees; instead, call Nedda Accountant. I did and I received the best service ever when compared to dysfunctional CPAs and the likes. I highly recommend Nedda Accountant for your business.\"";
                Owner[0]= "- Dr. Browning";
                Business[0]= "";
                URL[0] = "";
            //Heather @ Pete's Transmission
                Quotation[1] = "\"I have been using Nedda Tax Accountant for 2 years, and they are the best! They answer all my questions expertly and are always available with good advice on my taxes, and my everyday bookeeping. Recommend them highly!\"";
                Owner[1]= "- Heather";
                Business[1]= "";
                URL[1] = "";
            //James @ The UPS Store #3460
                Quotation[2] = "\"As fast-paced as the world of small business is, it is very important to have a resource that can handle accounting services so that we can focus on things that grow our business. Without Nedda Tax Accountant, we would be buried in our own paperwork and prone to costly tax mistakes. \"";
                Owner[2]= "- James Silva";
                Business[2]= "The UPS Store #3460";
                URL[2] = "http://maps.google.com/maps?hl=en&um=1&ie=UTF-8&q=ups+store+3460&fb=1&gl=us&hq=UPS+Store+#3460&hnear=Mesa,+AZ&cid=0,0,13191075400916330298&ei=djBXTdHqG4T0tgP8sJCiDA&sa=X&oi=local_result&ct=image&resnum=4&ved=0CCgQnwIwAw";

index = Math.floor(Math.random()* Quotation.length);

function showQuotation(){
            document.write(Quotation[index] + "<br />");}
function showOwner(){
                document.write(Owner[index]);}
function showBusiness(){
                document.write('<A HREF="' + URL[index] + '" target="_blank">' + Business[index] + '</a>');}
