var quotes = new Array();
quotes.push(new Array("WaveMaker is changing the dynamics of cloud computing by bringing to market an open, Java environment that's easy-to-use and delivers maximum deployment flexibility.", "Roger Sippl, industry veteran and founder of Sippl Investments"));
quotes.push(new Array("WaveMaker's approach to visual development makes it easy to build and deploy web-based business applications. With the launch of WaveMaker Cloud Edition, they are introducing an open source solution that brings easy development and deployment to cloud computing.", "Raven Zachary, Analyst, 451Group"));
var i = Math.floor(Math.random() * quotes.length);
var quote_text = quotes[i][0];
var quote_cite = quotes[i][1];
document.writeln('<blockquote>"' + quote_text + '"<cite>' + quote_cite + '</cite>' + '</blockquote>');
