//CLOCK
	var itsep = 0;
	
	function show2(){
		var Today = new Date();
		var hours = Today.getHours();
		var minutes = Today.getMinutes();
		var seconds = Today.getSeconds();
		var tsep = ":";
		
		var WeekDays = new Array("Neděle", "Pondělí", "Úterý", "Středa","Čtvrtek", "Pátek", "Sobota");
		var WeekDay = WeekDays[Today.getDay()];
		
		var Months = new Array("ledna", "února", "března", "dubna", "května", "června", "července", "srpna", "září", "října", "listopadu", "prosince");
		var Month = Months[Today.getMonth()];

		if (hours == 0)
			hours = 12;
		if (minutes <= 9)
			minutes = "0" + minutes;
		if (seconds <= 9)
			seconds = "0" + seconds;
			
		//tsep = seconds%2==0 ? ":" : "<font color='#FFFFFF'>:</font>";
		tsep = itsep==0 ? ":" : "<font color='#FFFFFF'>:</font>";
		if (++itsep==2) {itsep=0};
		
		
		var ctime = "<font face='Tahoma' color='#777777'>" + 
						Today.getDate() + ". " + Month + " " + Today.getFullYear() + " " +
						hours + tsep + minutes + tsep + seconds + "</font>";
		if (!document.getElementsByTagName("*"))
			document.write(ctime);
		else
			tick2.innerHTML = ctime;
	}

	if (document.getElementsByTagName("*"))
		setInterval("show2()",500);
	if (!document.getElementsByTagName("*"))
		show2();

