

  // make the two columns of the bottom part of the page the same height (for Safari, who knows the correct width only after everything is loaded)
  $(window).bind('load',function()
  {

    /* welcome */    
 //   $('#knowledgebase').toggleClass('active');
 //   $('#knowledgebaseselector').toggleClass('active');
    
  //  $('#welcome_less a').click(function(ev)
  //  {
  //    $('#welcome_more').show();
  //    $('#welcome_less').hide();
  //    ev.preventDefault(); 
  //  });
    
    // show or hide the knowledgebase when a user clicks on the 'button'
    $('#knowledgebaseselector a,#welcomebar_layover a').bind('click', function(ev)
    {
      $('#knowledgebaseselector').toggleClass('active');
      $('#welcome').toggle();
      $('#welcomebar_layover').toggle();
      return false;
    });
    
    
    
    /*  end welcome */
    
    
    $('#hp_left, #hp_center, #hp_right').vjustify();
    $('#specialscontainer').height($('#hp_left').height()-105);
    $('#agendacontainer, #specialscontainer, #blogscontainer').vjustify();
    $('#sections div.section div.menublock').vjustify();
  });

  var highlight = function(what)
  {
    //$('#knowledgebase').toggleClass('active');    
    
  }
  
  
