

var old_id = 'reisetext';


function showInfo(id) {
	document.getElementById(old_id+'_tab').className = "tab";	
	document.getElementById(id+'_tab').className = "tab aktiv";
	document.getElementById(old_id).style.display = "none";
	document.getElementById(id).style.display = "block";
	old_id = id;

}

function hide_box(id,liid) {
 document.getElementById(id).style.display = 'none';
 document.getElementById(liid).className = 'normal';
}

function hide_li(liid) {
	if (old_id == '') { document.getElementById(liid).className = 'normal'; }
}