
				var clock = bindows.loadGaugeIntoDiv("gauges/g_clock_02.xml", "clockDiv");
				function updateClock() {
					var t = new Date();
					t = { h: t.getHours(), m: t.getMinutes(), s: t.getSeconds() };
					clock.needleHours.setValue(t.h % 12 + t.m/60);
					clock.needleMinutes.setValue(t.m + t.s/60);
					clock.needleSeconds.setValue(t.s);
				}
				updateClock();
				setInterval(updateClock, 1000);


