$(function(){
  $('.event-desc-people .inner-link').click(function(){
    if (!$(this).hasClass('yo')) {
      $('.event-desc-people .more').css('display','inline-block');
      $(this).addClass('yo');
    } else {
      $('.event-desc-people .more').css('display','none');
      $(this).removeClass('yo');
    }
    return false;
  });

  $('.map-box .inner-link').click(function(){
    $('.map-box .map').toggle();
    return false;
  });

  $('.other-contests').exhibit({exhHolder: '.video-box', exhItem: '.video-item'});
  $('.comments').comments();
  $('.map-box > .where > a').incrPlaceClicks();
});
