//These 2 values define the width and height of the snapshot buttons
var numOfCols = 4;
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 = [
  ["VIX", "VIX", "SimpleQuote", "true"],
  ["VXD", "VXD", "SimpleQuote", "true"],
  ["VXN", "VXN", "SimpleQuote", "true"],
  ["IBM", "IBM", "QuoteTable", "true"],
  ["MVR", "MVR", "QuoteTable", "true"],
	["DJX", "DJX", "QuoteTable", "true"],
	["SPX", "SPX", "QuoteTable", "true"],
  ["NDX", "NDX", "QuoteTable", "true"],
  ["OEX", "OEX", "QuoteTable", "true"],
  ["RUT", "RUT", "QuoteTable", "true"],
  ["DIA", "DIA", "QuoteTable", "true"],
  ["SPY", "SPY", "QuoteTable", "true"],
  ["QQQ", "QQQQ", "QuoteTable", "true"],
  ["OEF", "OEF", "QuoteTable", "true"],
  ["IWM", "IWM", "QuoteTable", "true"],
  ["BXD", "BXD", "SimpleQuote", "false"],
  ["BXM", "BXM", "SimpleQuote", "false"],
  ["BXN", "BXN", "SimpleQuote", "false"],
  ["XEO", "XEO", "QuoteTable", "true"],
  ["IBB", "IBB", "QuoteTable", "true"] 
  ];

  
  