// Menu de Navegacion
// Diseño: Victor Rodriguez
// Fecha : 29/03/2009

(function(){
var menu1=new Scl.Menu(150);
  menu1.addItem('Plan de Actividades','jamplan.html');
  menu1.addItem('Hospedaje','accommodations.html');
  menu1.addItem('Trilobites del evento','jamtrilobites.html');
  menu1.addItem('Mapa del Jam','mapa.html');
  menu1.dockTo('inicio');

var menu2=new Scl.Menu(150);
  menu2.addItem('Seminarios','jamseminars.html');
  menu2.addItem('La Excavación','digoff.html');
  menu2.addItem('Entrega de Premios','awardceremony.html');
  menu2.dockTo('events');
  
var menu3=new Scl.Menu(150);
  menu3.addItem('Información General','generalinfo.html');
  menu3.addItem('Registro en Línea','onlineregis.html');
  menu3.addItem('Registro por Correo','regmail.html');
  menu3.dockTo('registro');      

}

)();

document.write('<div id="demo">');
document.write('<span id="inicio"><a href="index.html">INICIO</a></span>|');
document.write('<span id="events">EVENTOS</span>|');
document.write('<span id="registro">REGISTRO</span>|');
document.write('<span id="hoteles"><a href="http://www.trilobitejam.com/news.php">NOTICIAS</a></span>|');
document.write('<span id="empresa"><a href="../gallery.php?lang=esp">GALERIA DE FOTOS</a></span>|');
document.write('<span id="salir"><a href="faqs.html">FAQ</a></span>|');
document.write('<span id="salir"><a href="contact.html">CONTACTOS</a></span>|');
document.write('</div>');


