﻿jQuery(function() {
	var $ = jQuery;
	var isEnglish = $(".lang-cs a").length === 1;
	$("table td,table th").each(function() {
		var obj = $(this);
		var text = obj.text();
		if(text.length === 3 && text.substring(2) !== "." && text.toUpperCase() == text) {
			obj.addClass("flag flag-"+text.toLowerCase());
		}
		else if(isEnglish) {
			text = text.replace(/slavnostní vyhlášení turnaje/gi,"Closing Ceremony");
			text = text.replace(/datum/gi,"Date");
			text = text.replace(/čas/gi,"Time");
			text = text.replace(/týmy/gi,"Teams");
			text = text.replace(/reprezentace/gi,"national team of");
			text = text.replace(/náhradník/gi,"reserve");
			text = text.replace(/Rumunska/gi,"Romania");
			text = text.replace(/Rakouska/gi,"Austria");
			text = text.replace(/Litvy/gi,"Latvia");
			text = text.replace(/Lotyšska/gi,"Lithuania");
			obj.text(text);
		}
	});
});
