var quotes=new Array();
quotes[0] = "We don't just sell design &#8211; <br/>we offer<br/> a solution";
quotes[1] = "Our strong skills are based upon experience, passion,<br/> and talent";
quotes[2] = "To make a good work we take inspiration, motivation, and <br/>a pinch of creativity";


var q = quotes.length;
var whichquote=Math.round(Math.random()*(q-1));
function showquote(){document.write(quotes[whichquote]);}
showquote();