    <!-- // QuoteSystem Code
    var quoteArray = new Array();
	var theQuoteList = "";
	// The Quotes
	// -----------------------------------------------
quoteArray[0] = "A new-generation analog mixer - complete with FireWire interfacing.|4|14|Paul Vnuk|13|Recording Magazine|12|000066";
quoteArray[1] = "Match this mixer with Mackie\'s Tracktion recording software, and you have a complete recording system at your fingertips.|4|14|Brian Stephens|13|West Coast Performer|12|000066";
quoteArray[2] = "I\'ve always liked Mackie mixers, but the Onyx is the best sounding boards they\'ve ever come out with. It\'s been getting a lot of use, both in the studio and on the road.|4|14|Steve Berlin|13|Los Lobos|12|000066";
quoteArray[3] = "The [Onyx] system as a whole sounded excellent. The inclusion of a convenient, speedy, and fine-sounding 24-bit/96kHz FireWire interface... is the icing on another triumphant mixing cake by Mackie.|4|14|Rusty Cutchin|13|Electronic Musician|12|000066";
quoteArray[4] = "The preamps on the Onyx have a really good sound, and the EQ feels just right to me. I run most of my keyboard modules through it. It\'s also built really solid...|4|14|Mike Shinoda|13|Linkin Park|12|000066";
quoteArray[5] = "I\'ve never heard a mixer sound this clean. Bravo for Onyx, Mackie.|4|14|Kevin Eubanks|13|Music Director, The Tonight Show|12|000066";
quoteArray[6] = "There\'s nothing like the instant access and visual feedback of an analogue console. With the Firewire option installed, the Mackie Onyx provides the best of both worlds.|4|14|Bob Dormon|13|Music Tech Magazine|12|000066";
quoteArray[7] = "It does exactly what I want it to do and I\'m very happy with my choice.|4|14|Jim Lowe|13|Producer/Engineer, Stereophonics|12|000066";
	// -----------------------------------------------
	for (i=0; i<quoteArray.length; i++){
		if (theQuoteList != ""){
			theQuoteList = theQuoteList + "~" + escape(quoteArray[i]) ;
		} else {
			theQuoteList = escape(quoteArray[i]) ;
		}
	}
	var htmlTextArray = new Array();
	htmlTextArray = quoteArray[Math.round(Math.random(quoteArray.length))].split("|");
	// This code is used when a person doesn't have flash or JS
	// you can modify this code as you see fit
	//---------------------------------------------------
	var noFlashHTML = '<table cellpadding=\"10\" cellspacing=\"0\" border=\"0\" width=\"100%\" height=\"100%\" bgcolor=\"#FBFBFC\"><tr><td style=\"color:#000066\">' + htmlTextArray[0] + '<br><br><div align=\"right\"><b>' + htmlTextArray[3] + '</b><br>' + htmlTextArray[5] + '</div></td></tr></table>';
	//---------------------------------------------------
	var quoteSystem=new flashObj();
	quoteSystem.flashFile = "/Common/flash/MackieQuote.swf";
	quoteSystem.flashVars = "timeDelay=9000&quoteMarksColor=000066&quoteMarksAlpha=10&theQuoteList=" + theQuoteList;
	quoteSystem.bgcolor = "FFFFFF";
	quoteSystem.DenyIEdl = "TRUE";
	quoteSystem.IEonly = "FALSE";
	quoteSystem.ID = "quote";
	quoteSystem.width = "222";
	quoteSystem.height = "188";
	quoteSystem.scale = "noScale";
	quoteSystem.FlashVer = 6;
	quoteSystem.cabVersion = "6,0,65,0";
	quoteSystem.altTxt = noFlashHTML;
	document.write(quoteSystem.render());
	//-->

