function getQuote () {
	var choice = Math.floor(Math.random()*10);
	var files = new Array(
		"pic0.jpg"
		,
		"ed130.jpg"
		,
		"ross.jpg"
		,
		"pat.jpg"
			,
		"roger.jpg"
		,
		"andy.jpg"
		//	,
		//	"pic6.jpg"
		//	,
		//	"pic7.jpg"
		//	,
		//	"pic8.jpg"
		//	,
		//	"pic9.jpg"
		//	,
		//	"pic10.jpg"
	
	) // end of pics array	
	var quotes = new Array(
			"I really like the audio processing facilities available as standard.  Being able to measure each circuit’s impedance whilst sat down at a laptop is pretty cool too."
			,
			"We've know the guys at Ateis for many years and with the relationships that we have it makes sense to continue. Ateis offers an all round range of equipment and is constantly developing their product around the Standards and client requirements. We're already working on projects for 2010 using Ateis equipment."
			,
			"Ateis trained me on IDA programming and it's really very very straightforward. Excellent!"
			,
			"Working on all sizes of VA project with Ateis kit, I've found it easy to set-up, use and maintain"
			,
			"Ateis did a great job supporting their product and helping us get to grips with a huge project!",
			"We’ve supplied the UAPG2 to a variety of customers’ projects, taking delivery of the first ones straight from the factory. They’ve proved themselves to be easy to program, easy to interface with the outside world and with superb audio quality.  They’re also very reliable. Combine this with the cost-effective pricing and it’s a very attractive package for anyone needing a flexible, expandable DSP matrix."
			
			
		);
	var attrib = new Array (
		"Rupert Moon"
		,
		"Eddie Thomas MInstSCE"
		,
		"Ross Brett"
		,
		"Pat Bradley"
		,
		"Roger Agate"
		,
		"Andy Huffer"
	);
	var title = new Array (
		"Consultant Pro Audio"
		,
		"Owner ETASound"
		,
		"Engineer ETA Sound"
		,
		"Honeywell, VA Customer Support"
		,
		"Director, Unysystems"
		,
		"H D Pro Audio"
	);
	var thisIndex = Math.floor(Math.random()*quotes.length);
	//alert(thisIndex);
	var theQuote = "<div style='width:220px'><img style='float:left;padding-right:3px' src='images/" + files[thisIndex];
	theQuote += "' alt='' id='quotePic' width='100' ><p class='quoteText'>";
	theQuote += "<span class='quoteMark'>&#171;</span><span class='quoteText'>";
	theQuote += quotes[thisIndex];
	theQuote += "</span><span class='quoteMark'>&#187;</span><span class='quoteAttrib'><span class='underline'> ";
	theQuote += attrib[thisIndex];
	theQuote += "</span>, <span class='italic'>(";
	theQuote += title[thisIndex];
	theQuote +=  ")</span></span></p></div>";
	return theQuote;
}; // end function
