//var strings = new Array();
var strings = [
	["Dobré ráno", "Dobré odpoledne", "Dobrý ve&#269;er", "Dnes je", "&#269;as"],
	["Good morning", "Good afternoon", "Good evening", "Today is", "time"]
];

function WelcomeMessage() {
	now = new Date();
	//alert(now.toLocaleString());

	lang = location.hostname.substring(location.hostname.length - 2);
	if ('eu' == lang) messages = strings[1];
	else messages = strings[0];

	h = now.getHours();
	if (h < 12) {
		document.write(messages[0]);
	} else if (h < 17) {
		document.write(messages[1]);
	} else {
		document.write(messages[2]);
	}
	document.write(". " + messages[3] + ": " + now.getDate() + "." + (now.getMonth()+1) + "." + now.getFullYear() + ", " + messages[4] + ": " + now.getHours() +":" + (now.getMinutes() < 10 ? "0" + now.getMinutes() : now.getMinutes()) + ".");
}
