    <!-- // QuoteSystem Code
    var quoteArray = new Array();
	var theQuoteList = "";
	// The Quotes
	// -----------------------------------------------
quoteArray[0] = "For those of you that need to mix at reasonable levels and want a pair of inexpensive monitors that don\'t hype up your mix for you, I have to suggest you check these out.|4|14|Matt Harper|13|EQ|12|000066";
quoteArray[1] = "...they are now a permanent fixture in my suite.|4|14|Matt Harper|13|EQ|12|000066";
quoteArray[2] = "Taking into account both price and performance, I can really recommend these speakers for home studio use...|4|14|Paul White|13|Sound on Sound|12|000066";
quoteArray[3] = "It\'s refreshing to hear a monitor in this price range that hasn\'t been treated with a lot of high- or low-end hype (a.k.a the \"smile curve\").|4|14|Nick Casares|13|Recording|12|000066";
quoteArray[4] = "Considering the sound and the modest price of the MR Series, it\'s hard not to like these monitors.|4|14|Nick Casares|13|Recording|12|000066";
quoteArray[5] = "If you\'re in the market for your first set of real monitors, or if you need a small set of close-fields to augment your existing system, give the MR5\'s a listen.|4|14||13|Electronic Musician|12|000066";
quoteArray[6] = "Mackie\'s MR5 monitors provide very impressive quality at an attractive price.|4|14||13|Electronic Musician|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());
	//-->

