Index: trunk/webapps/EInotebook/scripts/LoadEvents.js
===================================================================
--- trunk/webapps/EInotebook/scripts/LoadEvents.js	(revision 363)
+++ trunk/webapps/EInotebook/scripts/LoadEvents.js	(revision 364)
@@ -1,3 +1,3 @@
-
+/* author: jdalbey    date: 4/10/2019 */
 
 // Parse the entire Incident XML Script file 
@@ -15,5 +15,5 @@
         var currEvt = eventTags[i];
         // local variable declarations
-        var timeFields; var evtTime; var incidentNum; var cadProp; var telProp;
+        var timeFields; var evtTime; var incidentNum; var incidentTitle; var cadProp; var telProp;
         var proparray = new Array();
         var evalarray = new Array();
@@ -32,5 +32,6 @@
                         break;
                     case "INCIDENT":
-                        incidentNum = Number(currEvt.childNodes[child].attributes["LogNum"].value); 
+                        incidentNum = Number(currEvt.childNodes[child].attributes["LogNum"].value);
+                        incidentTitle =  currEvt.childNodes[child].textContent;
                         break;
                     case "GENERAL_INFO":  
@@ -40,4 +41,7 @@
                         we load events.)  Creating an event (below) requires that the incident has already
                         been created. */
+                        var desc = currEvt.childNodes[child].getElementsByTagName("TEXT")[0].textContent;
+                        var theIncident = new Incident(evtTime, incidentNum, incidentTitle, desc);
+                        incidents.add(theIncident);
                         break;
                     case "CAD_DATA": 
Index: trunk/webapps/EInotebook/scripts/Event.js
===================================================================
--- trunk/webapps/EInotebook/scripts/Event.js	(revision 363)
+++ trunk/webapps/EInotebook/scripts/Event.js	(revision 364)
@@ -46,10 +46,10 @@
     // Color constants (TODO: assign incident numbers dynamically)
     var incidentColor = {
-187: "PowderBlue",    
-188: "#afcfaf",        // DarkSeaGreen
-189: "#ffe680",        // CornSilk
-190: "MistyRose", 
-191: "Moccasin",
-181: "PowderBlue" }
+187: "#d8f0f3",        // PowderBlue
+188: "#dfecdf",        // DarkSeaGreen
+189: "#fff5cc",        // CornSilk
+190: "#ffe8e6",        // MistyRose
+191: "#ffffcc",       // Dark Orange
+181: "#d8f0f3" }
 
 	
