function ReplaceLang(Obj,Lng) {
	var path = Obj.location.href;
	Obj.location.href = path.replace(/\/de\/|\/it\//,"/"+Lng+"/");
}

function xlate(Lng) {
	ReplaceLang(this,Lng)
}
