	function czas(shift) {
		var Digital=new Date()

		var hours=Digital.getHours()+shift
		if (hours<0)
		hours=hours+24
		if (hours>23)
		hours=hours-24
		if (hours<=9)
		hours="0"+hours

		var minutes=Digital.getMinutes()
		if (minutes<=9)
		minutes="0"+minutes

		var seconds=Digital.getSeconds()
		if (seconds<=9)
		seconds="0"+seconds

		return hours+":"+minutes+"."+seconds;
	}

	function show5() {
		document.getElementById("liveclock0").innerHTML="<small>Nowy Jork</small><br />"+czas(-6)
		document.getElementById("liveclock1").innerHTML="<small>Londyn</small><br />"+czas(-1)
		document.getElementById("liveclock2").innerHTML="<small>Warszawa</small><br />"+czas(0)
		document.getElementById("liveclock3").innerHTML="<small>Moskwa</small><br />"+czas(2)
		document.getElementById("liveclock4").innerHTML="<small>Hong Kong</small><br />"+czas(7)

		setTimeout("show5()",1000)
	}

