    <!-- // QuoteSystem Code
    var quoteArray = new Array();
	var theQuoteList = "";
	// The Quotes
	// -----------------------------------------------
quoteArray[0] = "The one thing I find remarkable about the Mackie family of studio monitors is that they're totally non-fatiguing. |4|14|Simon Leadly|13|Village Recorder Studios|12|000066";
quoteArray[1] = "After years of working with monitors in various pro studios... I have not heard a monitor that exceeds the accuracy and richness of the [HR Series].|4|14|Rusty Cutchin|13|Home Recording Magazine|12|000066";
quoteArray[2] = "The [HR Series] are quite amazing little speakers. They are simultaneously about truth and beauty.|4|14|Matt Zlaten|13|Recording Magazine|12|000066";
quoteArray[3] = "The [HR Series] sounded very accurate and did not over-emphasize any one part of the mix.|4|14|Dane A. Davis|13|Danetracks (Matrix, Gothika)|12|000066";
quoteArray[4] = "What I immediately noticed about the [HR Series] was their pinpoint accuracy, incredible imaging and excellent separation.|4|14|Chris Wehba|13|Metratone Studios|12|000066";
quoteArray[5] = "What I like the most about the [HR Series] is the low ear fatigue - I can listen to them all day. It's not like other monitors ... where you blow your ears out in a matter of hours.|4|14|Myles Kennedy|13|Vocals/Guitar, The Mayfield Four |12|000066";
quoteArray[6] = "The [HR Series] is also a fine cabinet. Yet again, Mackie has come up with a winner.|4|14|Brad Watts|13|Audio Technology 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());
	//-->

