var quotes=new Array() // do not change this!
var authors=new Array()
var titles=new Array()
var companies=new Array()

//store the quotations in arrays
quotes[0] = "I have known Gina for a number of years. When I need to talk to a top recruiter, she is one of the first people I call!";
authors[0] = "Frank Pet";
titles[0] = "Worldwide Service Controller";
companies[0]="Microsoft";
 
quotes[1] = "I highly recommend Gina for her integrity, depth of knowledge, and tremendous skill in the industry.";
authors[1] = "Luke Chandler";
titles[1] = "Director of Planning and Analysis";
companies[1]="Honeywell";
 
quotes[2] = "Gina is a natural communicator and a truly genuine individual. She is very &rsquo;high touch&lsquo; with clients, which builds great long term partnerships.";
authors[2] = "Heather Gray";
titles[2] = "Vice President of Sales";
companies[2]= "Kinetix Living";

quotes[3] = "Dynamo really gets to know the company, the department, the needs. It&rsquo;s the right approach.";
authors[3] = "Judd Lee";
titles[3] = "Chief Financial Officer";
companies[3]= "Benchmark (Formally CFO of Maveron)";
 
quotes[4] = "Not only did Gina successfully place me seven years ago, she recently sourced two outstanding candidates for me that are in key positions.";
authors[4] = "Richard C. Deck";
titles[4] = "Chief Accounting Officer";
companies[4]="Coinstar";

quotes[5] = "Gina equally balances the needs of her clients with those of her candidates. She engineers the best possible relationships for all parties.";
authors[5] = "Nick Choat";
titles[5] = "VP of Engineering and Operations";
companies[5]="Verisign";

quotes[6] = "I have worked with numerous recruiters over the years and Gina and Dynamo Recruiting stand out above them all.";
authors[6] = "Tobias Hartmann";
titles[6] = "Executive Director";
companies[6]="LexisNexis";

quotes[7] = " I trust Gina to invest the time in understanding my team's culture as well as my organizational needs.";
authors[7] = "Patricia Lee Smith";
titles[7] = "Executive Director";
companies[7]="Seattle Times";

quotes[8] = "Gina has consistently produced top talent in a difficult market and has been an absolute pleasure to do business with. I highly recommend her.";
authors[8] = "Grant Peterson";
titles[8] = "CTO";
companies[8]= "Docusign";

quotes[9] = "Dynamo delivers good value, and Gina works with a passion that is important in this business.";
authors[9] = "Timothy Bauman";
titles[9] = "Co-Founder and Principal";
companies[9] = "Investment Partners";

quotes[10] = "The position Gina presented was exactly what I was looking for. She stays in contact with those she places and ensures that they are in the right position.";
authors[10] = "Megan Carrico (Paulman)";
titles[10] = "Director, Client Services";
companies[10]="LIM";

quotes[11] = "Gina has great presence, knows the market and the key decision makers who reside in it. She builds trust quickly and follows through.";
authors[11] = "Dennis McCormick";
titles[11] = "VP of Sales and Service";
companies[11]="HipCricket";

quotes[12] = "I would recommend Gina to those seeking a new career path or those employers looking for their next &ldquo;go-to&rdquo; employee";
authors[12] = "Dennis McCormick";
titles[12] = "VP of Sales and Service";
companies[12]="HipCricket";

quotes[13] = "Gina is passionate about the work she does and her enthusiasm makes the process of finding the right candidate a positive experience.";
authors[13] = "Lara Zwerling";
titles[13] = "Director";
companies[13]= "Cardomain";

quotes[14] = "Gina is a very committed professional. She came highly recommended by my colleagues and I am now happy to recommend her as well.";
authors[14] = "Lara Zwerling";
titles[14] = "Director";
companies[14]= "Cardomain";
 
quotes[15] = "Warm, wonderful, professional, and thorough! Gina&rsquo;s a true pro!";
authors[15] = "Cindy Spodek Dickey";
titles[15] = "VP Marketing";
companies[15]= "Zumobi";

quotes[16] = "Gina not only focuses on the details of each individual, but also keeps in communication with her previous clients, to help them evolve in their potential fields.";
authors[16] = "Weidong Chen";
titles[16] = "CEO";
companies[16]= "Haoray";

quotes[17] = "Gina has helped me land a great job for 4 years at Amazon, and since then has remained committed to keeping in touch with me about my current role.";
authors[17] = "Matt Zimney";
titles[17] = "Director of  Business Development";
companies[17]= "Microsoft";

quotes[17] = "Gina Peckman and Julie Baker attacked our project with energy, expertise and enthusiasm.  They immediately grasped who we are and what we were looking for.";
authors[17] = "Kathy Fletcher";
titles[17] = "Executive Director";
companies[17]= "People For Puget Sound";

quotes[17] = "Despite the fact that we had attracted our own good pool of candidates to start with, Dynamo found the candidate we ultimately hired.  And we ended up beating the schedule we had established as our goal.";
authors[17] = "Kathy Fletcher";
titles[17] = "Executive Director";
companies[17]= "People For Puget Sound";


//calculate a random index
index = Math.floor(Math.random() * quotes.length);

//display the quotation
document.write("<DL>\n");
document.write("<DT class='quotetext'>" + "&ldquo;" + quotes[index] + "&rdquo;\n");
document.write("<DD class='attributetext'>" + "<br>");
document.write("<DD class='attributetext'>" + authors[index] + "\n");
document.write("<DD class='titletext'>" + titles[index] + "\n");
document.write("<DD class='companytext'>" + companies[index] + "\n");
document.write("</DL>\n");

//done