/*
	*** astridseidel. agentur für kommunikation ***
	Javascript for astridseidel. agentur für kommunikation
	(c) Mareike Hybsier - http://www.die-programmiererin.de
*/

function highlightActiveMenu (active, subnavigation) {
	var active_menu = document.getElementById(active).childNodes[0];
	active_menu.setAttribute('class', 'active');
	active_menu.setAttribute('className', 'active'); // Hack for Win IW 6 + 7
	
	if (subnavigation != 'empty') {
		var active_submenu = document.getElementById(subnavigation).childNodes[0];
		active_submenu.setAttribute('class', 'active');
		active_submenu.setAttribute('className', 'active'); // Hack for Win IW 6 + 7
	}
	return false;
}
