var quotes=new Array()
	
	quotes[0] = "&quot;With Pelyco&#39;s suite of supply chain visibility tools we have better quicker access to critical supply chain data. Our supply chain efficiency has greatly improved resulting in lower overall cost structures. In addition to a broad range of scenario analysis that otherwise would be impossible to achieve we have been able to achieve more accurate forecasting and demand planning.&quot;<br /> Senior Manager Planning, Engine Operations, <strong>Caterpillar</strong>";
	quotes[1] = "&quot;Pelyco proved to be an exceptional business partner. They spent time understanding our business problem and process, delivered a high quality solution and exceeded our expectations.&quot;<br /> Director, Demand Planning, <strong>Proctor &amp; Gamble</strong>";
	quotes[2] = "&quot;Pelyco's webPUBLISH has given us everything we need and is now an integral part of our Exception Management process. Pelyco has gone above and beyond our expectations.&quot;<br /> Senior Manager, <strong>The Gillette Company</strong>";
	quotes[3] = "&quot;We increased parts volume by 20% while reducing planning labor costs by 16%. This is something we could never have achieved without webPUBLISH. This has helped extend the success of our APS project by an order of magnitude.&quot;<br /> Master Scheduling Manager, <strong>Plexus</strong>";
	quotes[4] = "&quot;We are delighted with the success of this implementation and the value received to date. The application was operational in record time with an outstanding level of user acceptance due to the intuitive nature of the application.&quot;<br /> Associate Director, Finance &amp; MIS, <strong>Canon</strong>";
	quotes[5] = "&quot;The working relationship with Pelyco has really been very productive and serves as an example of how IT development can and should work... Our more recent work resulted in a second patent filing, and (of course more importantly) a working system that offers decision support to enable business improvements.&quot;<br /> Integrated Supply Chain Design Group, <strong>IBM</strong>";
	quotes[6] = "&quot;webPUBLISH was implemented to provide Daimler with the visibility we needed to produce a timelier and more accurate production plan. The approach complements and accelerates our existing systems by broadening the user community and institutionalizing Daimler&#39;s Integrated Volumes Project.&quot;<br /> Supply Chain Manager, <strong>DaimlerChrysler</strong>";
	quotes[7] = "&quot;With Pelyco&#39;s webPUBLISH and SmartSpreadSheet visibility solution, we have placed a real-time, easy to use forecasting tool in the hands of field sales personnel to update and communicate demand changes systemically, which link to our planning systems, improving our response time and service levels to our customers.&quot;<br /> Director of Operations, <strong>Munchkin</strong>";
	quotes[8] = "&quot;The ROI and time to value of this supply chain visibility initiative will further differentiate Solectron&#39;s leadership position. Pelyco has been a very responsive partner, possessing strong supply chain domain expertise and a proven track record.&quot;<br /> Americas Planning Process Owner, <strong>Solectron Corporation</strong>";
	quotes[9] = "&quot;We have empowered our most important users through the use of webPUBLISH. We succeeded in institutionalizing i2&reg; within the organization. webPUBLISH exceeded expectations and provides a competitive advantage for our EMS business.&quot;<br /> Master Production Scheduler, <strong>Elamex</strong>";


function newQuote()
{
	var randomNum = Math.round(Math.random()*(quotes.length - 1));
	if(document.getElementById('quoteContent').innerHTML != quotes[randomNum]){
		document.getElementById('quoteContent').innerHTML = quotes[randomNum];
	}
	else{
		newQuote();
	}
}
function setQuoteTimer()
{
	setInterval("newQuote()",10000);
}
