/*	document.write("<script src='http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.js' type='text/javascript'></script>");	*/

	var iLcdState = 0;
	var aLcdFiles = new Array("Current Time", "LCDOutputHistory.html", "LCDOutputContents.html", "SunriseSunset.html");
	function bRotateLcd()
		{
		//	load the data
		if (0 == iLcdState)	//	0 is Current Time
			{
			var dateNow = new Date();
			var iHour = dateNow.getHours();
			if (iHour == 0)
				iHour = 12;
			if (iHour > 12)
				iHour = iHour - 12;

			var iMins = dateNow.getMinutes();
			if (iMins < 10)
				iMins = "0" + iMins;

			$('#lcd-box').html("<center><br /><font size='+7'>"+iHour+":"+iMins+"</font></center>");
			}
		else
			$.get(aLcdFiles[iLcdState], {}, function(data){ $("#lcd-box").html("<table>"+data+"</table");});

		if (++iLcdState >= aLcdFiles.length)
			iLcdState = 0;
		setTimeout('bRotateLcd()', 3000);
		}

	$(document).ready(function() {
		bRotateLcd();
	});

