// JavaScript Document

$(document).ready(  
  function() {

    showWelcome();
  
  
  
  
  
  
  
  
  
  
  }
  

);


function hideAll() {

  $('#welcome').slideUp();
  $('#venue').hide();
  $('#program').hide();
  $('#registration').hide();
  $('#hotel').hide();
  $('#toronto').hide();
  $('#transportation').hide();
}

function showWelcome() {
  hideAll();
  $('#welcome').slideDown( 'slow ');
}

function showVenue() {
  hideAll();
  $('#venue').slideDown( 'slow ');
}

function showProgram() {
  hideAll();
  $('#program').slideDown( 'slow ');
}

function showRegistration() {
  hideAll();
  $('#registration').slideDown( 'slow ');
}

function showHotel() {
  hideAll();
  $('#hotel').slideDown( 'slow ');
}

function showToronto() {
  hideAll();
  $('#toronto').slideDown( 'slow ');
}

function showTransportation() {
  hideAll();
  $('#transportation').slideDown( 'slow ');
}










