
var quotes = new Array();
quotes.push(new Array("WaveMaker allowed me to quickly build a web-based insurance claims application that was faster and provided more functionality than the original tool - MS Access. Best of all, I did it in only 20% of the time that it took to build the original MS Access application!", "Rob Geib, Partner, MarKur Networks, LLC"));
quotes.push(new Array("WaveMaker flat out saved my job! Using WaveMaker, I built an inventory tracking application using 80% less code than I would have needed in MS Access, making me much more valuable to my employer!", "Robert Manshack, New Development, IT, Texas Department of Criminal Justice"));
quotes.push(new Array("WaveMaker is great for any developers who are migrating Microsoft applications to Java. The learning curve to build great-looking Java applications with WaveMaker is just a few weeks!", "Aurelio Di Pasquale, Lead Software Developer, MARA"));
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>');

