function navToLanguage(myLanguage) {
	switch(myLanguage)
	{
	case "german":
		if (document.location.href.indexOf("/english/") > 0) document.location.href=document.location.href.replace('/english/','/deutsch/');
		if (document.location.href.indexOf("/francais/") > 0) document.location.href=document.location.href.replace('/francais/','/deutsch/');
		if (document.location.href.indexOf("/italiano/") > 0) document.location.href=document.location.href.replace('/italiano/','/deutsch/');
		if (document.location.href.indexOf("/deutsch/") > 0) document.location.href=document.location.href.replace('/deutsch/','/deutsch/');
	break;
	case "french":
		if (document.location.href.indexOf("/english/") > 0) document.location.href=document.location.href.replace('/english/','/francais/');
		if (document.location.href.indexOf("/francais/") > 0) document.location.href=document.location.href.replace('/francais/','/francais/');
		if (document.location.href.indexOf("/italiano/") > 0) document.location.href=document.location.href.replace('/italiano/','/francais/');
		if (document.location.href.indexOf("/deutsch/") > 0) document.location.href=document.location.href.replace('/deutsch/','/francais/');
	break;
	case "italian":
		if (document.location.href.indexOf("/english/") > 0) document.location.href=document.location.href.replace('/english/','/italiano/');
		if (document.location.href.indexOf("/francais/") > 0) document.location.href=document.location.href.replace('/francais/','/italiano/');
		if (document.location.href.indexOf("/italiano/") > 0) document.location.href=document.location.href.replace('/italiano/','/italiano/');
		if (document.location.href.indexOf("/deutsch/") > 0) document.location.href=document.location.href.replace('/deutsch/','/italiano/');
	break;
	case "english":
		if (document.location.href.indexOf("/english/") > 0) document.location.href=document.location.href.replace('/english/','/english/');
		if (document.location.href.indexOf("/francais/") > 0) document.location.href=document.location.href.replace('/francais/','/english/');
		if (document.location.href.indexOf("/italiano/") > 0) document.location.href=document.location.href.replace('/italiano/','/english/');
		if (document.location.href.indexOf("/deutsch/") > 0) document.location.href=document.location.href.replace('/deutsch/','/english/');
	break;
	}
}
