    <!-- // QuoteSystem Code
    var quoteArray = new Array();
	var theQuoteList = "";
	// The Quotes
	// -----------------------------------------------
quoteArray[0] = "It does exactly what I want it to do and I'm very happy with my choice.|4|18|Jim Lowe|12|Producer/Engineer, Stereophonics|12|ffffff";
quoteArray[1] = "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|18|Mike Shinoda|12|Linkin Park|12|ffffff";
quoteArray[2] = "I've never heard a mixer sound this clean. Bravo for Onyx, Mackie.|4|18|Kevin Eubanks|12|Music Director, The Tonight Show|12|ffffff";
	// -----------------------------------------------
	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=\"#000000\"><tr><td style=\"color:#ffffff\">' + 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_bl.swf";
	quoteSystem.flashVars = "timeDelay=9000&quoteMarksColor=333333&quoteMarksAlpha=100&theQuoteList=" + theQuoteList;
	quoteSystem.bgcolor = "000000";
	quoteSystem.DenyIEdl = "TRUE";
	quoteSystem.IEonly = "FALSE";
	quoteSystem.ID = "quote";
	quoteSystem.width = "728";
	quoteSystem.height = "133";
	quoteSystem.scale = "noScale";
	quoteSystem.FlashVer = 6;
	quoteSystem.cabVersion = "6,0,65,0";
	quoteSystem.altTxt = noFlashHTML;
	document.write(quoteSystem.render());
	//-->

