//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 = [
	["SPX", "SPX", "QuoteTable", "true"],
	["NDX", "NDX", "QuoteTable", "true"],
  ["RUT", "RUT", "QuoteTable", "true"],
  ["DJX", "DJX", "QuoteTable", "true"],
  ["OEX", "OEX", "QuoteTable", "true"],
  ["SPY", "SPY", "QuoteTable", "true"],
  ["QQQ", "QQQQ", "QuoteTable", "true"],
  ["IWM", "IWM", "QuoteTable", "true"],
  ["DIA", "DIA", "QuoteTable", "true"],
  ["OEF", "OEF", "SimpleQuote", "true"],
  ["BXM", "BXM", "SimpleQuote", "true"],
  ["BXN", "BXN", "SimpleQuote", "true"],
  ["BXR", "BXR", "QuoteTable", "true"],
  ["BXD", "BXD", "QuoteTable", "true"], 
  ["PUT", "PUT", "SimpleQuote", "true"],
  ["VIX", "VIX", "SimpleQuote", "true"],
  ["VXN", "VXN", "SimpleQuote", "true"],
  ["RVX", "RVX", "QuoteTable", "true"],
  ["VXD", "VXD", "QuoteTable", "true"],  
  ["XSP", "XSP", "QuoteTable", "true"]
  ];

  
  
