// JavaScript Document
var quotations = new Array()
quotations[0]= "<p class='quote'>&quot;I wanted to thank you for the time you took with me and the incredible advice you gave to me. I think it is very important for people to know when they have made a significant contribution in the life of another person, and you have a friend for life. I highly recommend your process and it was the best investment I could have ever made!&quot;</p><p class='quote-source'>T.R., Mount laurel NJ</p>";
quotations[1]= "<p class='quote'>&quot;I will absolutely keep you at the forefront of partners to assist me in my search for a better career.&quot;</p><p class='quote-source'>G.D., Malvern PA</p>";
quotations[2]= "<p class='quote'>&quot;First of all I need to admit that I wouldn't have had the position I have if not for you. I am glad I met you for giving me the chance to believe again in myself.&quot;</p><p class='quote-source'>Costas</p>";
quotations[3]= "<p class='quote'>&quot;Because of your efforts, I am pleased to say that I am now the Director of Engineering. Thank you for your service and for making my professional life fulfilling.</p><p class='quote-source'>T.R.W., Wilmington Delaware</p>";

function display()
{
a=Math.floor(Math.random()*quotations.length)
document.getElementById('testimonial').innerHTML=quotations[a]
setTimeout("display()",15000)
}