Index: /trunk/webapps/js/cctvLayer.js
===================================================================
--- /trunk/webapps/js/cctvLayer.js	(revision 339)
+++ /trunk/webapps/js/cctvLayer.js	(revision 341)
@@ -68,6 +68,14 @@
             imgDir = "CCTVSlow/"
         }
-
-        cctv_infowindow.setContent('<div style="font-weight:bold;font-family: monospace">' +  cctvIndex + "&nbsp;" + cctvLocation + "&nbsp;" +currentColor + "<BR>" + imgTag + imgDir + cctvIndex + '.jpg">' + "</div>");
+        // Demo of video embed - only on highway 241 locations
+        if (cctvIndex.startsWith("12-241"))
+        {
+            cctv_infowindow.setContent('<div style="font-weight:bold;font-family: monospace">' +  cctvIndex + "&nbsp;" + cctvLocation + "&nbsp;" +currentColor + '<BR><video width="320" height="240" autoplay  controls loop><source src="images/TrafficFreeflow.ogv" type="video/ogg"></div>');
+        }
+        else 
+        // image from fast or slow directories
+        {
+            cctv_infowindow.setContent('<div style="font-weight:bold;font-family: monospace">' +  cctvIndex + "&nbsp;" + cctvLocation + "&nbsp;" +currentColor + "<BR>" + imgTag + imgDir + cctvIndex + '.jpg">' + "</div>");
+        }
         cctv_infowindow.setPosition(event.feature.getGeometry().get());
         cctv_infowindow.open(map);
