//These 2 values define the width and height of the snapshot buttons
var numOfCols = 3;
var rowLen = 5;


//The 1st array element is the Symbol name to be displayed
//The 2nd element is the Symbol to be used in the ILX query
//The 3rd element is which quote page we should forward the click request to
//The 4th element indicates if the symbol has intra-day values or just a close
var ChartInit = new Array();
ChartInit = [
	["DJX", "DJX", "SimpleQuote", "true"],
	["SPX", "SPX", "SimpleQuote", "true"],
  ["NDX", "NDX", "SimpleQuote", "true"],
  ["OEX", "OEX", "SimpleQuote", "true"],
  ["RUT", "RUT", "SimpleQuote", "true"],
  ["DIA", "DIA", "SimpleQuote", "true"],
  ["SPY", "SPY", "SimpleQuote", "true"],
  ["QQQ", "QQQQ", "SimpleQuote", "true"],
  ["OEF", "OEF", "SimpleQuote", "true"],
  ["IWM", "IWM", "SimpleQuote", "true"],
  ["DRG", "DRG", "SimpleQuote", "true"],
  ["BIX", "BIX", "SimpleQuote", "true"],
  ["SOX", "SOX", "SimpleQuote", "true"],
  ["BTK", "BTK", "SimpleQuote", "true"],
  ["TRA", "TRAN", "SimpleQuote", "true"]
  ];

  
  