	n = 1;
  all = 6;
  
  // fotos
  var fotos = new Array();
	fotos[1] = "montauk-01";
  fotos[2] = "montauk-02";
  fotos[3] = "montauk-03";
  fotos[4] = "montauk-04";
  fotos[5] = "montauk-05";
  fotos[6] = "montauk-06";
  
  var memos = new Array();
  memos[1] = "Cedar Point, Long Island";
  memos[2] = "Cedar Point, Long Island";
  memos[3] = "Cedar Point, Long Island";
  memos[4] = "Cedar Point, Long Island";
  memos[5] = "Montauk, Long Island";
  memos[6] = "Montauk, Long Island";
  
  // thumbs
  var thumbs = new Array();
  for( i=1; i<=all; i++ )
  {
  	thumbs[i] = new Image();
  	thumbs[i].src = "images/TN_" + fotos[i] + ".JPG";
  }
