Index: schedule/js/Graph.js
===================================================================
--- schedule/js/Graph.js	(revision 16754)
+++ schedule/js/Graph.js	(revision 16754)
@@ -0,0 +1,42 @@
+function Graph()
+{
+
+ var options = {
+			chart: {
+				renderTo: 'Graph'/* display to div Graph*/
+				
+			},
+			
+			xAxis: {
+				categories:["12PM","1PM","2PM","3PM","4PM","5PM","6PM","7PM","8PM","9PM","10PM","11PM","12AM","1AM","2AM","3AM","4AM","5AM","6AM","7AM","8AM","9AM","10AM","12PM"]
+			},
+			series:[], /* array of Data  */
+			
+			remove:function()
+			{
+				return false;
+			},
+			
+			 exporting: {							/*--------------------*/
+				buttons: {							/*					  */
+					exportButton: {					/*		Export		  */
+						menuItems: null,			/*		  to		  */
+						onclick: function() {		/*			PNG.file  */
+							this.exportChart();		/*--------------------*/
+						}
+					}
+				}
+			},
+			plotOptions : {
+			
+			series : {
+					lineWidth: 3,
+			
+				marker : {
+					enabled:false
+				}
+			}
+		}				
+	};
+	var chart=new Highcharts.Chart(options);
+}
