<!--
var userName = new Array();
  // insert the first part of the address below
  userName[0]="richg"; //Richard A. Gander
  userName[1]="TomC"; //Tom Curley
  userName[2]="JohnMc"; //John McDonald
  userName[3]="JohnF"; //John Fatta

var userNameFull = new Array();
  // Insert the name associated with the address
  // Important! Make sure the numbers line-up with the addresses above
  userNameFull[0]="Richard A. Gander";
  userNameFull[1]="Tom Curley";
  userNameFull[2]="John McDonald";
  userNameFull[3]="John Fatta";
  
var images = new Array();
 images[0]="<img src='images/Spinning_06.gif' border=0 width='140' height='34'>";
 images[1]="<img src='images/email_2.gif' border=0 width='37' height='41'>";
 images[2]="<img src='images/email_2.gif' border=0 width='37' height='41'>";
 images[3]="<img src='images/email_1.gif' border=0 width='37' height='41'>";

// Insert the domain name portion of the address below
var siteName = "fdnygonesouth.com";

i=0;
	do userName[i]='<a class=special href=\"mailto:' + userName[i] + '@' + siteName + '?subject=FDNYGONESOUTH-Contact\">' + userNameFull[i] + " " +images[i] +'</a>';
	while(userName[++i])
//-->
