
$(document).ready(function() {
	// click-event für die sprachen
	$("img.lang").click(function() {

		// aktuelle sprache identifizieren
		lang = $("img.current").attr("id");
		// gewählte sprache identifizieren
		newlang = $(this);
		lang2 = newlang.attr("id");

		if (lang != lang2)
		{
			// Beschriftung der aktuellen Sprache entfernen
			tohide = ".lang_" + lang;
			$(tohide).each(function(i) {
				$(this).hide();
			});
			// Beschriftung der gewünschten Sprache anzeigen
			toshow = ".lang_" + lang2;
			$(toshow).each(function(i) {
				$(this).show();
			});

			$("img.lang").removeClass("current");
			newlang.addClass("current");

			// Buttons ändern
			inputbutton = $("input#submit");
			langs = inputbutton.attr("alt");
			if (langs != undefined)
			{
				langs = langs.split("|");
				inputbutton.attr("value", langs[lang2]);
			}
		}

	});



});
