// JavaScript Document

function show_hide(theitemtoshow,theitemtohide, seconditemtohide) {
    document.getElementById(theitemtoshow).style.display = "block";
	document.getElementById(theitemtohide).style.display = "none";
	document.getElementById(seconditemtohide).style.display = "none";
}

function hide_menu() {
	document.getElementById('getstarted').style.display = "none";
	document.getElementById('features').style.display = "none";
	document.getElementById('options').style.display = "none";
}

document.write("<table width=\"95%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" align=\"center\"><tr><td align=\"center\" valign=\"top\" height=\"50\">");
document.write("<div id=\"thesubmenu\">");
document.write("SUB MENU: &nbsp; &nbsp;<a href=\"index.html\" onMouseOver=\"hide_menu();\">Zuhause</a> &nbsp;&bull;&nbsp; <a href=\"\" onMouseOver=\"show_hide('getstarted','features','options');\" onClick=\"return false;\">Der Anfang</a> &nbsp;&bull;&nbsp; <a href=\"\" onMouseOver=\"show_hide('features','getstarted','options');\" onClick=\"return false;\">Eigenschaften</a> &nbsp;&bull;&nbsp; <a href=\"\" onMouseOver=\"show_hide('options','features','getstarted');\" onClick=\"return false;\">Optionen</a>");
document.write("<div id=\"getstarted\"><a href=\"01-register.html\">Registrieren</a> <a href=\"02-createaccount.html\">Account erstellen</a> <a href=\"03-logon.html\">Einloggen</a> <a href=\"04-calling.html\">Rufe und Nachrichten</a> <a href=\"05-joinrooms.html\">R&auml;ume betreten</a></div>");
document.write("<div id=\"features\"><a href=\"07-localav.html\">AV Fenster</a> <a href=\"08-addressbook.html\">Adressbuch</a> <a href=\"09-chat.html\">Chat Fenster</a> <a href=\"10-guestlist.html\">G&auml;ste Liste</a> <a href=\"11-sharing.html\">Sharing Fenster</a> <a href=\"13-guests.html\">G&auml;ste</a> <a href=\"14-ivbrecord.html\">Aufnahme</a> <a href=\"16-transfer.html\">File &Uuml;bertragung</a></div>");
document.write("<div id=\"options\"><a href=\"12-plus.html\">Plus Optionen</a> <a href=\"17-settings.html\">Einstellungen</a> <a href=\"18-router.html\">Router</a></div>");
document.write("</div>");
document.write("<div onMouseOver=\"hide_menu();\">&nbsp;</div>");
document.write("</td></tr></table>");
