// 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();\">Inicio</a> &nbsp;&bull;&nbsp; <a href=\"\" onMouseOver=\"show_hide('getstarted','features','options');\" onClick=\"return false;\">Como empezar</a> &nbsp;&bull;&nbsp; <a href=\"\" onMouseOver=\"show_hide('features','getstarted','options');\" onClick=\"return false;\">Caracter&iacute;sticas</a> &nbsp;&bull;&nbsp; <a href=\"\" onMouseOver=\"show_hide('options','features','getstarted');\" onClick=\"return false;\">Opciones</a>");
document.write("<div id=\"getstarted\"><a href=\"01-register.html\">Registro</a> <a href=\"02-createaccount.html\">Crear una cuenta</a> <a href=\"03-logon.html\">gratuita</a> <a href=\"04-calling.html\">Llamadas y mensajes</a> <a href=\"05-joinrooms.html\">Unirse a las salas</a></div>");
document.write("<div id=\"features\"><a href=\"07-localav.html\">AV Ventana de video</a> <a href=\"08-addressbook.html\">Libreta de direcciones</a> <a href=\"09-chat.html\">Ventana de chat</a> <a href=\"10-guestlist.html\">Lista de invitados</a> <a href=\"11-sharing.html\">Ventana compartida</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>");
