var quotes = new Array('<p>"Pacific MindWorks is a very responsive company that delivers what they promise",</p> <h2>Mark Meldrum</h2> <p>Aeroflex Software Development Manager</p>','<p>"Pacific MindWorks is such a valuable development partner that we\'ve already signed them up for more work."</p> <h2>Johannes Ganzert</h2> <p>Senior Applications Engineer, Rohde & Schwarz</p>','<p>"Pacific MindWorks delivered as promised and made a large contribution to the successful launch of the 34980A,"</p> <h2>Greg Parets</h2> <p>Agilent Project Manager</p>','<p>"Pacific MindWorks is very easy to work with and did what they said they would do-on time and within budget,"</p> <h2>Steve Healy</h2> <p>Vice President of Engineering, Ametek</p>','<p>"Pacific Mindworks have been a great company to work with. Their domain knowledge, flexibility and willingness to support us around the clock makes them a valued R&amp;D partner, rather than just a tool vendor."</p> <h2>Gershon Shamay</h2> <p>Manager<br />Software Development<br />VTI Instruments, Inc.</p>', '<p>"The high level of support offered by Pacific MindWorks turns an already great product into an outstanding one,"</p><h2>Yves Maumary</h2><p>Software Design Manager, Agilent</p>');

function showQuote()
{
	var ran_number=Math.round(Math.random()*(quotes.length-1));
	document.write(quotes[ran_number]);
}