// 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();\">Home</a> &nbsp;&bull;&nbsp; <a href=\"\" onMouseOver=\"show_hide('getstarted','features','options');\" onClick=\"return false;\">Getting Started</a> &nbsp;&bull;&nbsp; <a href=\"\" onMouseOver=\"show_hide('features','getstarted','options');\" onClick=\"return false;\">Features</a> &nbsp;&bull;&nbsp; <a href=\"\" onMouseOver=\"show_hide('options','features','getstarted');\" onClick=\"return false;\">Options</a>");
document.write("<div id=\"getstarted\"><a href=\"01-register.html\">Register</a> <a href=\"02-createaccount.html\">Create  Account</a> <a href=\"03-logon.html\">Logon</a> <a href=\"04-calling.html\">Calls &amp; messaging</a> <a href=\"05-joinrooms.html\">Join rooms</a></div>");
document.write("<div id=\"features\"><a href=\"07-localav.html\">AV Windows</a> <a href=\"08-addressbook.html\">Address Book</a> <a href=\"09-chat.html\">Chat window</a> <a href=\"10-guestlist.html\">Guest list</a> <a href=\"11-sharing.html\">Sharing window</a> <a href=\"13-guests.html\">Guests</a> <a href=\"14-ivbrecord.html\">Recording</a> <a href=\"16-transfer.html\">File transfer</a></div>");
document.write("<div id=\"options\"><a href=\"12-plus.html\">Plus  options</a> <a href=\"17-settings.html\">Settings</a> <a href=\"18-router.html\">Routers</a></div>");
document.write("</div>");
document.write("<div onMouseOver=\"hide_menu();\">&nbsp;</div>");
document.write("</td></tr></table>");

