Index: trunk/FACT++/www/schedule/index.js
===================================================================
--- trunk/FACT++/www/schedule/index.js	(revision 18486)
+++ trunk/FACT++/www/schedule/index.js	(revision 18487)
@@ -562,8 +562,15 @@
 }
 
-function onLoad()
-{
-    if (location.href.search('debug')==-1)
+function onReady()
+{
+     if (location.href.search('debug')==-1)
         $("#debug").hide();
+
+    /*---------------------------------------------------------------------------------------------
+     Initialize jQuery datapicker (type='date' not supported by firefox)
+     ----------------------------------------------------------------------------------------------*/
+
+     if ($('[type="date"]').prop('type') != 'date' ) 
+        $('[type="date"]').datepicker();
 
     /*---------------------------------------------------------------------------------------------
@@ -571,5 +578,6 @@
      ----------------------------------------------------------------------------------------------*/
 
-    $(document).ready(function(){$('[data-toggle="tooltip"]').tooltip();});
+     //$(document).ready(function(){$('[data-toggle="tooltip"]').tooltip();});
+     $('[data-toggle="tooltip"]').tooltip();
 
     /*---------------------------------------------------------------------------------------------
@@ -761,3 +769,3 @@
 }
 
-$('document').ready(onLoad);
+$('document').ready(onReady);
