Index: /trunk/src/tmcsim/highwaymodel/TrafficEventsAnimator.java
===================================================================
--- /trunk/src/tmcsim/highwaymodel/TrafficEventsAnimator.java	(revision 457)
+++ /trunk/src/tmcsim/highwaymodel/TrafficEventsAnimator.java	(revision 474)
@@ -45,8 +45,4 @@
     private final LinkedList<TrafficEvent> eventQueue;
     /**
-     * Map of incidents to events
-     */
-    private Map<String, List<TrafficEvent>> incidents;
-    /**
      * Highway history
      */
@@ -64,10 +60,9 @@
 
         // Initialize the highway model
-        incidents = new HashMap<String, List<TrafficEvent>>();
         highways = new Highways(
-                "config/vds_data/highways_fullmap.txt");
+                "config/vds_data/postmile_coordinates.txt");
         final String CONFIG_FILE_NAME = "traffic_model_config.properties";
         String propertiesFile = "config" + System.getProperty("file.separator") 
-                 + CONFIG_FILE_NAME;
+                 + "traffic_model_config" + System.getProperty("file.separator")  + CONFIG_FILE_NAME;
         Properties props = TrafficModelManager.loadProperties(propertiesFile);
         events_file = props.getProperty("Events_File");
@@ -86,5 +81,5 @@
         eventQueue = TrafficModelManager.readBatchFile(fileScanner);
     }
-    /** Load the traffic events into a history buffer */
+    /** Load the traffic events into a history buffer.  This  */
     public void load()
     {
@@ -100,4 +95,5 @@
             highways.applyColorToHighwayStretch(nextEvent.routeNumber, nextEvent.dir,
                     nextEvent.postmile, nextEvent.range, nextEvent.color);
+            // get the highwys as a string and add to the history list
             history.add(highways.toString()+"\n"+nextEvent.eventTime);
             // Remove this event from the queue, we're done with it.
