	//quote array
quoteList = new Array();
	
	quoteList[0] = "<h3>Jens H. Arnold</h3><h4>SPHEROS</h4><p>&quot;The Benefits von SPEED AS can be measured in many places: in the first 3 months the storage of materials was reduced by a double digit percentage. Throughput and delivery times have shortened. With SPEED AS we have taken an important step towards the future and set our course for further growth.&quot;</p><a class='logo'; href='1_10_06_spheros.html'><img src='../images/icons/arrow_small_grey.gif' border='0' class='btn2'></a>";
	
	quoteList[1] = "<h3>Reinhard Diemer</h3><h4>FEINGUSS BLANK</h4><p>&quot;The SPEED AS specific-industry solution does not just put us in a position to control all production processes, from the recording of orders to final delivery. It also provides us with the company-wide data system for approaching new business strategies more efficiently. A durable foundation has been created for economical operations, combined with constantly high quality and lasting success.&quot;</p><a class='logo'; href='1_10_05_feinguss_blank.html'><img src='../images/icons/arrow_small_grey.gif' border='0' class='btn2'></a>";
	
	quoteList[2] = "<h3>Peter Mazzucco</h3><h4>Novem Car</h4><p>&quot;We value ai informatics as an IT partner with a close knowledge of our industry who is both locally accessible and can provide us with the expertise to implement international IT infrastructure projects. Today our global processes operate at peak performance levels. This means that the ongoing development of our IT solution has turned into a central productivity factor.&quot;</p><a class='logo'; href='1_10_04_novem_car.html'><img src='../images/icons/arrow_small_grey.gif' border='0' class='btn2'></a>";
	
	//randomization
var now = new Date();
var secs = now.getSeconds();
var raw_random_number = Math.random(secs);
var random_number = Math.round(raw_random_number * (quoteList.length));

if (random_number == quoteList.length){random_number = 0}
	
	
	//set quote
var quote = quoteList[random_number];
