var emails = new Array();
emails[0] = "anne.warden*leggett.com";
emails[1] = "john.walsh*leggett.com";
emails[2] = "doug.marshall*leggett.com";
emails[3] = "tom.hawkins*leggett.com";
emails[4] = "alan.snow*leggett.com";
emails[5] = "julia.johannes*leggett.com";
emails[6] = "diana.smitely*leggett.com";
emails[7] = "tom.wellsjr*leggett.com";

function email(index)
{
	location.href = "mailto:" + emails[index].replace(/\*/, "@");
}


