/*
  This shows and hides the modal overlay on pages when a user clicks any link with the class='showContainer'
  (can be applied to anything, <p>, <span>, <div>, etc as long as it has class='showContainer'
*/

$(function(){
  $('.showContainer').click(function(){
    $('#container').show();
  });
  
  $('#hideContainer').click(function(){
    $('#container').hide(100);
    return false;
  });
});