var Quotation=new Array();
var Person=new Array();
var Company=new Array();

Quotation[0] = 'Diane and I want to thank you for the time you spent with us and advice you gave us in preparing our estate plan.  This was not a simple process and you gave us thoughtful and clear guidance as to our options.';
Person[0]	= 'Kevin McArdle';
Company[0]	= 'CDK Capital';
 

Quotation[1] = 'Gary personally created my estate plan, asset protection plan and prepares my income tax returns each year. I have been in the financial planning profession for over 32 years and I do not get impressed easily. Gary\'\s expertise and creative ideas impress me.';
Person[1] = 'Steve Delott, CLU, CHFC.';
Company[1] = ''; 
 

Quotation[2] = 'I love referring clients to Gary;  I feel that his holistic approach and his genuine caring for his clients, along with his vast knowledge, make him the only choice.';  
Person[2] = 'Irwin C. Cohen';
Company[2] = ''; 
 

Quotation[3] = 'In the 10 years that had elapsed for our trust and will, our previous attorney had not made any suggestions that our documents may have been in need of change.';
Person[3] = ' Shirley and Anthony Enrietto'; 
Company[3] = ''; 
 

Quotation[4] = 'Gary Waitzman has been instrumental in my success as an entrepreneur.'; 
Person[4] = 'Eugene Coyle';
Company[4] = ''; 
 

Quotation[5] = 'The personal attention and care given to my accounts has been helpful and financially beneficial.  Gary is very knowledgeable and able to explain intricate details of all aspect of estate planning, clearly making them understandable to an untrained customer.';
Person[5] = 'Susan L. Schy, MD';
Company[5] = '';
 

Quotation[6] = 'We have a much greater understanding and appreciation of estate planning after working with a professional who specializes in this area of law.'; 
Person[6] = 'Kevin McArdle'; 
Company[6] = 'CDK Capital'; 

Quotation[7] = 'Gary led us through a question and answer process that reviewed numerous issues in a very thorough manner.';  
Person[7] = 'Shirley and Anthony Enrietto'; 
Company[7] = ''; 
 

Quotation[8] 	= 'I am dependent on the professionalism and skill sets that Gary provides, so I can use my expertise to run my business.'; 
Person[8] = 'Eugene Coyle'; 
Company[8] = ''; 
 

Quotation[9] 	= 'Gary\'\s help and ongoing process helps us sleep better at night.'; 
Person[9] = 'Shirley and Anthony Enrietto'; 
Company[9] = ''; 
 

Quotation[10] 	= 'For 17 years, I have been a satisfied customer.  I highly encourage someone seeking legal and tax advise to consider using the Law Offices of Gary R. Waitzman.'; 
Person[10] = 'Eugene Coyle'; 
Company[10] = '';

var theCount=10; 
function randomQuote()
{
var Q = Quotation.length;
var whichQuotation=Math.round(Math.random()*(Q-1));

document.write('<div style="width:240px; margin-top:15px; margin-left:15px; color:#fff; font-family: Arial, Helvetica;">&quot;');
document.write(Quotation[whichQuotation]);
document.write("&quot;<br><br>");
document.write('<span style="float:left">');
document.write(Person[whichQuotation]);
document.write("<br>");
document.write(Company[whichQuotation]);
document.write("</span></div>");
}


function allQuotes()
{
var i=0;
for (i=0;i<theCount;i++)
{
document.write('<p  style="text-align:left;">&quot;');
document.write(Quotation[i]);
document.write("&quot;</p>");
document.write('<p  style="padding-bottom:1px;"><i>');
document.write(Person[i]);
document.write('</i></p><p  style="padding-bottom:1px;">');
document.write(Company[i]);
document.write("</p><br><br>");
}
}
