function menu_hover(id,mode)
{
	if(aktuell != id)
	{
		var klasse = "tbl_menu";

		if(mode == 1)
		{
			klasse = "tbl_menu_over";
		}

		eval("document.all['" + id + "'].className = '" + klasse + "';");
	}
}

function menu_click(id,url)
{
	eval("top.frames.haupt.location.href = '" + url + "'");
	eval("document.all['" + aktuell + "'].className = 'tbl_menu';");
	aktuell = id;
	eval("document.all['" + id + "'].className = 'tbl_menu_over';");
}

function menu_start(id)
{
	aktuell = id;
	eval("document.all['" + id + "'].className = 'tbl_menu_over';");
}
