var quotes = new Array();
quotes.push(new Array("WaveMaker makes Java Point and Click &mdash; you can build a web application without using a single acronym!", "Peter Wayner, InfoWorld Product Review"));
quotes.push(new Array("WaveMaker is the first platform I've seen that makes web development fun!", "Lead Developer, Macys.com"));
quotes.push(new Array("With WaveMaker, we get the productivity to match our delivery timeframe to our business user's needs.", "Project Lead, Cisco"));
quotes.push(new Array("It took me less than 10 minutes to build an Employee maintenance application. And I'm not even a developer!", "Jos van Dongen, Founder, Tholis Consulting"));
quotes.push(new Array("We saw a tremendous productivity gain using WaveMaker &mdash; we can build apps 61% faster with 98% less code!", "Mike Onders, SVP Information Services, National City Bank"));
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>');