var quotes = [
  { quote: 'The VenturePay team is great to work with; They have learned our business so quickly and were able to help us put together a robust strategy to re-invent our product.', by: 'Jalal S', from: 'Modeling Project' },
  { quote: 'VenturePay has provided solid strategic thinking for me over and over.  They push me to be smarter about my business … no question is too big or too small for this team.  They really are true partners and fun to work with.', by: 'Shelly B', from: 'Marketing Strategy and Measurement Projects' },
  { quote: 'VenturePay is a one-of-a-kind partner.  They thoroughly understand our industry, our business challenges and our organizational objectives; they continually generate strategic recommendations based on their data driven approach, their strong analytical skills and their creative problem solving skills.', by: 'Kevin C', from: 'Marketing Strategy and Measurement Projects' },
  { quote: 'VenturePay was an absolute pleasure to work with!  They are one of the best partners I’ve worked with. We were essentially able to \"plug and play\" their deliverables.  That has been invaluable', by: 'Brian S', from: 'Market Sizing Project' },
  { quote: 'I have worked with VenturePay off and on during the last eight years and they have always provided sound and strategic analysis to help better inform our business decision process.  They are friendly, flexible and easy to work with.  I highly recommend VenturePay to help improve your business results.', by: 'Heather C', from: 'Profitability Models and Tools Projects' },
  { quote: 'Thank you for an outstanding job.  You have such an unparalleled reputation for excellence, and I am now educated as to how you’ve earned it.  Thank you for contributing your invaluable expertise to this project.  You are terrific partners.', by: 'Todd L', from: 'Marketing Business Case Model, Tracking and Measurement Project' }
];

function getQuote() {
  var q = quotes[Math.round(Math.random()*quotes.length)];
  document.getElementById("quote").innerHTML = '<blockquote>' + q.quote + '</blockquote><p><strong>' + q.by + '</strong>' + q.from;
};
