function first(){
         document.getElementById('current01').style.borderBottom =  "1px solid white";
}
//erste id für den div, zweite für den weißen unterstrich
function show_in(id, id2) {
	document.getElementById(id).style.display = "block";
         document.getElementById(id2).style.borderBottom =  "1px solid white";
}
function show_out(id, id2) {
         document.getElementById(id).style.display = "none";
         document.getElementById(id2).style.borderBottom =  "1px solid black";
}
