/* Author: Jonathan Keller Keller */

$(document).ready(function(){
  /* Help area toggle */
  $('#resize').click(function() {
    $('#help').toggle(0);
  });
  $('#help').click(function() {
    $('#help').toggle(0);
  });

  /* Correctly center social icons */
/*
  var center = Math.floor($(window).width() / 2);
  $('#social').css("left",(center-100)+"px");
  $(window).resize(function() {
    var center = Math.floor($(window).width() / 2);
    $('#social').css("left",(center-100)+"px");
  });
*/
});

