    <!-- // QuoteSystem Code
    var quoteArray = new Array();
	var theQuoteList = "";
	// The Quotes
	// -----------------------------------------------
quoteArray[0] = "It's great to be able to see the auxes through the faders. And I was able to go from aux to aux, mix to mix right away - the TT24 really is a joy to work with.|4|14|Fausto Torres|13|Capital Hill Block Party|12|000066";
quoteArray[1] = "I have worked on some larger boards in bigger rooms - I'm able to do more setups on the TT24 with less confusion as to the signal flow.|4|14|John Randolph|13|Sound Engineer, Sunset Tavern|12|000066";
quoteArray[2] = "A lot of smaller churches in particular have been intimidated by the cost and complexity issues, but with a console like the TT24, it's simply not an issue anymore.|4|14|Warren Hendrickson|13|Worship Arts Pastor, Northwest Foursquare Church|12|000066";
quoteArray[3] = "The TT24's small footprint is also a great thing for live work. I've got 48 channels right within arm's reach, and I don't have to run from one end of the board to the other.|4|14|Justin Warbreck|13|Audio Service Coordinator, Northwest Foursquare Church|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());
	//-->


