﻿
function showHideInfo(object)
{

var hideText = {"DE":"Ausblenden", "EN":"Hide", "ES":"Ocultar", "FR":"Réduire", "IT":"Nascondi"};
var showText = {"DE":"Anzeigen", "EN":"Show", "ES":"Mostrar", "FR":"Afficher", "IT":"Mostra"};
var hideInfoText = {"DE":"Informationen ausblenden", "EN":"Hide information", "ES":"Ocultar la información", "FR":"Réduire l'information", "IT":"Nascondi le informazioni"};
	var showInfoText = {"DE":"Informationen anzeigen", "EN":"Show information", "ES":"Mostrar la información", "FR":"Afficher l'information", "IT":"Mostra le informazioni"};

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";
}



if($(object).parent('div.showHideDiv').children('div.infoDiv').is(':hidden'))
{

$(object).parent('div.showHideDiv').children('div.infoDiv').show();

$(object).attr('title', hideInfoText[whatLang]);

$(object).children('img.infoIcon').attr({src: "/cms/global/assets/images/Environment/icon_collapse.gif", alt: hideInfoText[whatLang]});

$(object).children('p.infoText').text(hideText[whatLang]);

$(object).children('img.infoArrow').attr({src: "/cms/global/assets/images/Environment/downBlueArrow.gif", alt: hideInfoText[whatLang]});
}

else if($(object).parent('div.showHideDiv').children('div.infoDiv').is(':visible'))
{

$(object).parent('div.showHideDiv').children('div.infoDiv').hide();

$(object).attr('title', showInfoText[whatLang]);

$(object).children('img.infoIcon').attr({src: "/cms/global/assets/images/Environment/icon_expand.gif", alt: showInfoText[whatLang]});

$(object).children('p.infoText').text(showText[whatLang]);

$(object).children('img.infoArrow').attr({src: "/cms/global/assets/images/Environment/rightBlueArrow.gif", alt: showInfoText[whatLang]});
}
}
$(document).ready(function() {

var hideText = {"DE":"Ausblenden", "EN":"Hide", "ES":"Ocultar", "FR":"Réduire", "IT":"Nascondi"};
var showText = {"DE":"Anzeigen", "EN":"Show", "ES":"Mostrar", "FR":"Afficher", "IT":"Mostra"};
var hideInfoText = {"DE":"Informationen ausblenden", "EN":"Hide information", "ES":"Ocultar la información", "FR":"Réduire l'information", "IT":"Nascondi le informazioni"};
	var showInfoText = {"DE":"Informationen anzeigen", "EN":"Show information", "ES":"Mostrar la información", "FR":"Afficher l'information", "IT":"Mostra le informazioni"};

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";
}




$('p.infoText').show().hover(function () {$(this).css('text-decoration', 'underline').css('color', '#000dff')}, function () {$(this).css('text-decoration', 'none').css('color', '#404490')});

$('img.infoIcon').show().attr('alt', showInfoText[whatLang]);

$('p.infoHeading').hover(function () {$(this).css('text-decoration', 'underline').css('color', '#000dff')}, function () {$(this).css('text-decoration', 'none').css('color', '#404490')});

$('img.infoArrow').attr({src: "/cms/global/assets/images/Environment/rightBlueArrow.gif", alt: showInfoText[whatLang]});

$('div.infoDiv').hide();


$('div.linkDiv').bind("click", function() {showHideInfo(this);}).attr('title', showInfoText[whatLang]).css('cursor', 'pointer');
});