// Menu de Navegacion
// Diseņo: Victor Rodriguez
// Fecha : 29/03/2009

(function(){
var menu1=new Scl.Menu(130);
  menu1.addItem('The Jam Plan','jamplan.html');
  menu1.addItem('Accommodations','accommodations.html');
  menu1.addItem('The Jam Trilobites','jamtrilobites.html');
  menu1.addItem('The Jam Maps','mapa.html');
  menu1.dockTo('inicio');

var menu2=new Scl.Menu(130);
  menu2.addItem('Jam Seminars','jamseminars.html');
  menu2.addItem('The Dig-Off','digoff.html');
  menu2.addItem('Awards Ceremony','awardceremony.html');
  menu2.dockTo('events');
  
var menu3=new Scl.Menu(130);
  menu3.addItem('General Info','generalinfo.html');
  menu3.addItem('Register Online','onlineregis.html');
  menu3.addItem('Register by Mail','regmail.html');
  menu3.dockTo('registro');      

}

)();

document.write('<div id="demo">');
document.write('<span id="inicio"><a href="index.html">JAM INFO</a></span>|');
document.write('<span id="events">EVENTS</span>|');
document.write('<span id="registro">REGISTER</span>|');
document.write('<span id="hoteles"><a href="news.php">NEWS</a></span>|');
document.write('<span id="empresa"><a href="galeria/gallery.html">PHOTOS</a></span>|');
document.write('<span id="salir"><a href="faqs.html">FAQ</a></span>|');
document.write('<span id="salir"><a href="contact.html">CONTACT US</a></span>|');
document.write('</div>');

