
var timeout=1200;
var timer;

function timeout(id) {
	document.getElementById(id).style.visibility = 'hidden';
}

function HideOthers(id) {
	if (id!='nav_fewo')
    document.getElementById('nav_fewo').style.visibility = 'hidden';
	if (id!='nav_themen')
    document.getElementById('nav_themen').style.visibility = 'hidden';
	if (id!='nav_fewo2')
    document.getElementById('nav_fewo2').style.visibility = 'hidden';

// Überschrift zeigen wenn Menue?
	if (id==null)
    document.getElementById('Thema').style.visibility = 'visible';
}

function Show(id) {
	document.getElementById(id).style.visibility = 'visible';
// Überschrift zeigen wenn Menue?
    document.getElementById('Thema').style.visibility = 'hidden';
	clearTimeout(timer);
}

function Mouseout() {
	timer=setTimeout("HideOthers()", timeout);
}

function Mausaktiv() {
	clearTimeout(timer);
}

function Changebackgroundcolor(id, bgcolor) {
	document.getElementById(id).style.backgroundColor = bgcolor;
}
