﻿
$(document).ready(function() {

$(".podSection").hide();

$(".podSection .topLink").remove();
});
function show(elementId) {

$(".infoText a.selected").removeClass("selected");

if($("#"+elementId+":visible").length > 0) {


$(".podSection:visible .button").remove();

$(".podSection:visible").slideUp("normal");
}
else if($(".podSection:visible").length < 1) {

display(elementId);
} else {

$(".podSection:visible .button").remove();

$(".podSection:visible").slideUp("normal", function() {display(elementId);});
}
}
function display(elementId) {

var closeText = {"DE":"Schließen", "EN":"Close", "ES":"Cerrar", "FR":"Fermer", "IT":"Chiudi"};

var whatLang;

try
{
whatLang = document.nav_form.language.value.toUpperCase();
}
catch (e)
{
whatLang = "EN";
}



switch (whatLang) {

case "DE":
break;

case "EN":
break;

case "ES":
break;

case "FR":
break;

case "IT":
break;

default: whatLang = "EN";
}




$("#"+elementId).append('<div class="button secondary right"><a class="plain" href="javascript:closeSection('+"'"+elementId+"'"+');" title="'+closeText[whatLang]+'">'+closeText[whatLang]+'</a></div><div class="clearBoth">&nbsp;</div>');

$("#"+elementId).slideDown("normal");

$(".infoText a."+elementId).addClass("selected");
}
function closeSection(elementId) {

$("#"+elementId+":visible").slideUp("normal", function() {$("#"+elementId+" .button").remove();	$(".infoText a.selected").removeClass("selected");});
}