// JavaScript Document

function changeLanguageEng() {
	position = window.location.href.lastIndexOf(".de/")+4;
	window.location.href = "http://www.trecolan.de/english/"+ window.location.href.substr(position);
}

function changeLanguageGer() {
	position = window.location.href.lastIndexOf(".de/")+12;
	window.location.href = "http://www.trecolan.de/"+ window.location.href.substr(position);
}
