/* This script and many more are available free online at
The JavaScript Source!! http://javascript.internet.com
Created by: Lee Underwood :: http://javascript.internet.com/ */

var userName = new Array();
  // insert the first part of the address below
  userName[0]="veralucero";
  userName[1]="milawren";
  userName[2]="webmastr";
  userName[3]="veralucero";
  userName[4]="service";
  userName[5]="newsletter";
  userName[6]="stacypolk";
  userName[7]="support";
  userName[8]="webmastr";

var userNameFull = new Array();
  // Insert the name associated with the address
  // Important! Make sure the numbers line-up with the addresses above
  userNameFull[0]="Vera Lucero";
  userNameFull[1]="Mila Wren";
  userNameFull[2]="WebMaster";
  userNameFull[3]="Vera Lucero";
  userNameFull[4]="Service";
  userNameFull[5]="Newsletter";
  userNameFull[6]="Stacy Widner Polk";
  userNameFull[7]="AllFamilyOne Tech Support";
  userNameFull[8]="Contact Us";

// Insert the domain name portion of the address below
var siteName = "allfamilyone.com";

i=0;
do userName[i]='<a href=\"mailto:' + userName[i] + '@' + siteName + '\">' + userNameFull[i] + '</a>';
while(userName[++i])
// -->
