var quotes = new Array();
quotes[0] = '<i>"Client satisfaction is our primary goal."<br><br> '
quotes[1] = '<i>"Sometimes you need to reinvent the wheel. You get good at making wheels and you know how they turn."<br> '
quotes[2] = '<i>"Sometimes you need to reinvent the wheel. You get good at making wheels and you know how they turn."<br><br> '
quotes[3] = '<i>"Good software is not completely designed on paper, but is allowed to evolve."<br><br> '
quotes[4] = '<i>"Good software is not completely designed on paper, but is allowed to evolve."<br><br> '
quotes[5] = '<i>"The does everything approach takes too long to build, and is usually obsolete when it actually works .... and it never does everything." <br> '
quotes[6] = '<i>"Client satisfaction is our primary goal."<br><br> '

var i = Math.round(6*Math.random()); 

document.write(quotes[i]);

