 $(document).ready(
  function()
  {
       $("#portfolioLink").hover(
      function () {
        $("#portfolioImage-hover").stop();
        $("#portfolioImage-hover").fadeIn("fast");

      },
      function () {
        $("#portfolioImage-hover").fadeOut("slow");

      }
    );

       $("#servicesLink").hover(
      function () {
        $("#servicesImage-hover").stop();
        $("#servicesImage-hover").fadeIn("fast");
      },
      function () {
        $("#servicesImage-hover").fadeOut("slow");
      }
    );

       $("#contactLink").hover(
      function () {
        $("#contactImage-hover").stop();
        $("#contactImage-hover").fadeIn("fast");
      },
      function () {
        $("#contactImage-hover").fadeOut("slow");
      }
    );




  }
);

