
var quotes = new Array();
quotes.push(new Array("The less time you have to spend writing source code, the more time you have to sell additional projects. Visual development means less code and lower maintenance costs which means more money up front.", "Manuel Rodriguez Coria, Mavirroco Consulting"));
quotes.push(new Array("WaveMaker combines a slick application-construction environment with a compelling story as to why enterprises must consider its lightweight application platform.", "the451Group"));
quotes.push(new Array("We evaluated almost every Ajax tool vendor before  selecting WaveMaker. We chose WaveMaker because its visual Ajax studio gives us the lowest learning curve,  the highest productivity and the power to easily construct tailored solutions for our customers.", "Mark Angel, CTO, KANA Software"));
quotes.push(new Array("I was stunned at not having to write any custom Java code to build a sophisticated web business application.", "George Redenz, Development Manager for Web Enablement, Brunswick"));
quotes.push(new Array("Our ISV and enterprise customers want speed and choice. WaveMaker is the only web and cloud development platform that is based on open standards. It gives our customers tremendous flexibility in how and where to deploy their applications.", "Rajat Bhakhri, President and CEO, Aeturnum"));
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>');

