$(document).ready(function() {
  $('#toggle-pop-up').click(function() {
    $('#pop-up').toggle();
    return false;
  });
});

