var testamonials = {
  entry: [
  {
    'name' : "Tanessa Klug",
    'title' : "Product Marketing Manager",
    'company' : "Genmar Yacht Group, L.L.C.",
    'review' : "Lisa delivers impressive results that are on budget and on time. She has presented innovative solutions to our branding projects that are of higher quality (and yet lower cost) than we were able to source elsewhere. Extensive knowledge of the industry, combined with a knock-out work ethic, make Lisa an invaluable asset to our team."
  },
  {
    'name' : "Darlene Verhaagh",
    'title' : "Program Associate",
    'company' : "CESA 7",
    'review' : "Lisa has 'been there' for me when I have a project and has helped me meet my deadlines. She always makes time and is happy to make suggestions. I'm never disappointed when I call on Lisa."
  },
  {
    'name' : "Gail Riemer",
    'title' : "",
    'company' : "Zip Prints",
    'review' : "Lisa knows & understands the printing business. Quick turn around and very reasonable pricing."
  },
  {
    'name' : "Denise Neville",
    'title' : "Graphic Artist",
    'company' : "Whitetails Unlimited Inc.",
    'review' : "I have worked with Lisa for years. I have consistently chosen to stay with her based on her knowledge of all ends of the printing industry and her professionalism and customer-service skills. She goes the extra mile, and her customers are her top priority. The fact that she can now service all our needs has saved us time and definitely saved us money. "
  },
  {
    'name' : "Jenifer Grady, MSLS, MBA, CAE ",
    'title' : "Director",
    'company' : "ALA-APA",
    'review' : "I've worked with Lisa for three years and have always been impressed by her sensitivity to my budget, how efficiently and beautifully my products are printed, how she makes me feel like I'm her only client, and that she checks and double-checks to be sure that my present and future printing needs are met. Lisa lets me know that she cares about every facet of printing jobs large and small."
  },
  {
    'name' : "Pete Schuster",
    'title' : "",
    'company' : "Lfp Design!",
    'review' : "When I want my printing project handled the way I would handle it I turn to Lisa. That means on-time, correct and at a fair price. When I place it in her hands she claims 'ownership'"
  },
  {
    'name' : "Karen Larson",
    'title' : "Co-Owner",
    'company' : "Think Ink & Design",
    'review' : "We have worked with Lisa for several years, and have always found her to be professional and prompt. Her knowledge about the world of printing is vast and she makes great suggestions. Lisa will do what it takes to see the job through from start to finish. It is a pleasure to do business with Lisa!"
  },
  {
    'name' : "Rick Allcox",
    'title' : "",
    'company' : "NEW Printing ",
    'review' : "Lisa has an excellent understanding of all aspects of the Printing Industry; projects are organized and well planned which allows us to produce a quality project in a timely manner.  It is a sincere pleasure to partner with Lisa on her projects."
  },
  {
    'name' : "Dawn Nowakowski ",
    'title' : "",
    'company' : "",
    'review' : "Lisa is organized, efficient, extremely competent, and has an excellent rapport with her clients. What sets Lisa apart is that she genuinely cares about her clients and is dedicated to delivering the highest quality product at the best possible price. Lisa will never compromise on quality product or excellent service. "
  }
  ]
}

var rand = Math.floor(Math.random()*(testamonials.entry.length));

document.write("<p>" + testamonials.entry[rand].review + "</p>");
document.write("<p><b>" + testamonials.entry[rand].name + "</b><br />" + testamonials.entry[rand].title + "<br />" + testamonials.entry[rand].company + "</p>");
