$(function() {
  // New nav click
  $('#enter-image, #enter-link a').hover(function() {
    var self = this;
    $('#enter-image').stop();
    $("#enter-image").fadeTo('slow', 0.5);
    $('#enter-link a').stop();
    $('#enter-link a').animate({
      opacity: 1,
      }, 
      500
    );
  },
  function() {
    var self = this;
    $('#enter-image').fadeTo('slow', 1);
    $('#enter-link a').animate({
      opacity: 0.3,
      },
      500
    );
  });

});