$(document).ready(function() {
  $(".TextPage").hide();
  $(".TextLink").click(function() {
    $("#Header").hide();
    $("#Footer").hide();
    $(".Project").hide();
    $(".TextPage").show();
  });
  $(".BackLink").click(function() {
    $("#Header").show();
    $("#Footer").show();
    $(".TextPage").hide();
    $(".Project").show();
  });
});
