$(window).load(function () {
	if ((m = $("body").attr("alt").match(/^([a-z]{2}\-[a-z]{2})\/(.+)$/)) !== null) {
		$("body").append("<div id=\"prefered_language\" class=\"modalbox\" style=\"display:none\">"
				+ "You might want to see the website in another language.<br /><br />"
				+ "<img src=\"/resources/languages/"+m[1]+"16.png\" align=\"absmiddle\" /> "
				+ "Switch to <strong>"+m[2]+"</strong>"
				+ "</div>");
		$("#prefered_language").fadeIn().click(function () {
			$("#prefered_language").remove();
		});
		$("#prefered_language strong").click(function () {
			location.href = "/"+m[1]+"/home";
		});
	}
});

