function menueSecondActivate(effect,id,bgColorOut) {
    if (effect == "expand") {
	document.getElementById('menueMore').style.visibility = 'hidden';
	document.getElementById('menueExpand').style.visibility = 'visible';
	document.getElementById('menueExpand').style.borderColor = '#2b4494';
	document.getElementById('menueSecondHead').style.borderBottom = '0px';
    }
    if (effect == "highLight") {
	document.getElementById('menueSecond'+id).style.backgroundColor = 'white';
    }
    if (effect == "highLightOut") {
	document.getElementById('menueSecond'+id).style.backgroundColor = bgColorOut;
    }
}

function menueSecondDeactivate(etwas) {
    document.getElementById('newsActive').style.visibility = 'visible';
    document.getElementById('newsInctive').style.visibility = 'hidden';
}

