Index: trunk/webapps/cptms.html
===================================================================
--- trunk/webapps/cptms.html	(revision 330)
+++ trunk/webapps/cptms.html	(revision 333)
@@ -251,17 +251,17 @@
     };
 
-    var kMapPointsFile = "highway_status.json"; // dynamic json data file created by CADserver
+    var kVDSstatusFile = "highway_status.json"; // dynamic json data file created by CADserver
     var kMapStartupFile = "data_layers/highways_startup.json"; // initial (static) highways file used once at startup
     var kCMSfile = "data_layers/cms_locations_D12.gjson"; // CMS locations 
     var kCCTVfile = "data_layers/cctv_locations_D12.gjson"; // CCTV locations
     var kHARfile = "data_layers/har_locations_D12.gjson"; // CMS locations 
-    var blueFlag = "images/icon_cmsBlue.png";
-    var yellowFlag = "images/icon_cmsYellow.png";
+    var iconCMSactive = "images/icon_cms_active.png";
+    var iconCMSidle = "images/icon_cms_idle.png";
     var cctvIcon = "images/icon_cctvCyan.png";
     var cctvIconWhite = "images/icon_cctvWhite.png";
-    var vdsIconGreen = "images/circle-green.png"
-    var vdsIconYellow = "images/circle-yellow.png"
-    var vdsIconRed = "images/circle-red.png"
-    var harActive = "images/icon_harActive.png";
+    var iconVDSgreen = "images/circle_green.png"
+    var iconVDSyellow = "images/circle_yellow.png"
+    var iconVDSred = "images/circle_red.png"
+    var iconHARactive = "images/icon_har_active.png";
     var cms_showing = false;
     var vds_showing = true;
Index: trunk/webapps/js/cmsLayer.js
===================================================================
--- trunk/webapps/js/cmsLayer.js	(revision 327)
+++ trunk/webapps/js/cmsLayer.js	(revision 333)
@@ -39,5 +39,5 @@
         // return the StyleOptions
         return {
-            icon: yellowFlag,
+            icon: iconCMSidle,
             title: feature.getId()+ " " +feature.getProperty("location")+ " " 
                     + feature.getProperty("street"),
@@ -143,9 +143,9 @@
         if (outMessage == "|||||")
         {
-            currentIcon = {icon: yellowFlag};
+            currentIcon = {icon: iconCMSidle};
         }
         else
         {
-            currentIcon = {icon: blueFlag};
+            currentIcon = {icon: iconCMSactive};
         }
         cmsLayer.overrideStyle(cmsLayer.getFeatureById(cmsID), currentIcon)
@@ -199,9 +199,9 @@
                     item.cms.message.phase2.Line3 == "")
                 {
-                    cmsLayer.overrideStyle(cmsLayer.getFeatureById(item.cms.index), {icon: yellowFlag})
+                    cmsLayer.overrideStyle(cmsLayer.getFeatureById(item.cms.index), {icon: iconCMSidle})
                 }
                 else
                 {
-                    cmsLayer.overrideStyle(cmsLayer.getFeatureById(item.cms.index), {icon: blueFlag})
+                    cmsLayer.overrideStyle(cmsLayer.getFeatureById(item.cms.index), {icon: iconCMSactive})
                 }
             }
Index: trunk/webapps/js/harLayer.js
===================================================================
--- trunk/webapps/js/harLayer.js	(revision 327)
+++ trunk/webapps/js/harLayer.js	(revision 333)
@@ -39,5 +39,5 @@
         // return the StyleOptions
         return {
-            icon: harActive,
+            icon: iconHARactive,
             title: feature.getId()+ " " +feature.getProperty("location")+ " " 
                     + feature.getProperty("street"),
Index: trunk/webapps/js/vdsLayer.js
===================================================================
--- trunk/webapps/js/vdsLayer.js	(revision 326)
+++ trunk/webapps/js/vdsLayer.js	(revision 333)
@@ -6,12 +6,12 @@
 //        var diamond = 'M -1,0 0,-1 1,0 0,1 z';
 //        var myShape = circle;
-        var iconPath = vdsIconGreen;
+        var iconPath = iconVDSgreen;
         if (color == 'red')
         {
-           iconPath = vdsIconRed;
+           iconPath = iconVDSred;
         }
         else if (color == 'yellow')
         {
-            iconPath = vdsIconYellow;
+            iconPath = iconVDSyellow;
         }
         return {
@@ -136,5 +136,5 @@
     {
         var parsed_JSON;
-        loadJSON(kMapPointsFile, function(response)
+        loadJSON(kVDSstatusFile, function(response)
         {
             // Parse JSON string into object
