function tourSwitch(whichOne) {
	if (whichOne == 1) {
		document.getElementById('jstour_container').style.display = 'none';
		document.getElementById('so-bauen-wir-ihr-luxhaus').style.display = 'block';
		document.getElementById('tour-switch').innerHTML = 'Von der Idee zum Haus';
		document.getElementById('tour-switch').onclick = function() {
			tourSwitch(0);
		};
	} else {
		document.getElementById('so-bauen-wir-ihr-luxhaus').style.display = 'none';
		document.getElementById('jstour_container').style.display = 'block';
		document.getElementById('tour-switch').innerHTML = 'So bauen wir Ihr LUXHAUS';
		document.getElementById('tour-switch').onclick = function() {
			tourSwitch(1);
		};
	}
}
