    <!-- // QuoteSystem Code
    var quoteArray = new Array();
	var theQuoteList = "";
	// The Quotes
	// -----------------------------------------------
quoteArray[0] = "The d.2 is the real deal, a mixer worthy of the Mackie name, and a bold statement about their future dedication towards the DJ market.|4|14|David Cross|13|DJ Times|12|000066";
quoteArray[1] = "Having the reverse lights on the top panel as well as the front panel is a real nice touch, meaning you always know where you are with this mixer.|4|14|Mex|13|DJ, Producer |12|000066";
quoteArray[2] = "First things first: the d.2 Infinium crossfader is the real deal. It's incredibly accurate ... You can have buttery-smooth fader travel, or breathe-on-it-and-it'll-move performance.|4|14|David Cross|13|DJ Times|12|000066";
quoteArray[3] = "This is one of the sweetest sounding EQs around. Even when driving them all hard, it retains harmonics and musicality with no nasty shredding...|4|14|Mex|13|DJ, Producer |12|000066";
quoteArray[4] = "The fact that [the d.2] is made by one of the top names in studio mixers means quality isn't even something to consider. It's just a fact.|4|14|Jon Gos|13|URB Magazine|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());
	//-->

