{
if (timeZones == null)
{
Date today = new Date();
timeZones = new ArrayList();
TreeSet zoneTree = new TreeSet(new TimeZoneComparator());
String[] zoneArray = TimeZone.getAvailableIDs();
for (int i=0; i<zoneArray.length; i++)
{
zoneTree.add((TimeZone)TimeZone.getTimeZone(zoneArray[i]));
}