Index: schedule/Module/calendar.php
===================================================================
--- schedule/Module/calendar.php	(revision 16401)
+++ schedule/Module/calendar.php	(revision 16402)
@@ -122,16 +122,31 @@
 								xmlhttp.onreadystatechange=function()
 								  {
+								  for(src=0;src<source.length;src++)
+								  {
 								  if (xmlhttp.readyState==4 && xmlhttp.status==200)
 									{
-										
-											Data[src]= new Array();
+											if(src==0)
+											{
+												Data[src]= new Array();
+												
+												line=xmlhttp.responseText.split('\n');
+												for(row=0;row<line.length;row++)
+												{
+													rows=line[row].split(',');
+													Data[0].push(rows[4]);
+												}
+											}
+											else
+											{
+												Data[src]= new Array();
+												
+												line=xmlhttp.responseText.split('\n');
+												for(row=0;row<line.length;row++)
+												{
+													rows=line[row].split(',');
+													Data[1].push(rows[4]);
+												}
 											
-											line=xmlhttp.responseText.split('\n');
-											for(row=0;row<line.length;row++)
-											{
-												rows=line[row].split(',');
-												Data[0].push(rows[4]);
 											}
-											
 											GraphData(Data, src);
 											//document.getElementById('data').innerHTML=Data[src];
@@ -142,5 +157,5 @@
 								xmlhttp.send();
 								document.getElementById('data').innerHTML=source.length+""+src;
-							
+								}
 							
 							function GraphData(array, index)
