jQuery(function(){

$("div#gallery li a").click( function() {
  $("div#gallery li a").removeClass("active");
  $(this).addClass("active");
  var changeSrc = $(this).attr("href");
  var tempImg = $("#eyeCatch").clone().attr("id", "eyeCatch2");
  $("#eyeCatch").after(tempImg);
  $("#eyeCatch").hide(
    function() {
      $(this).attr("src", changeSrc);
      $(this).fadeIn();
      $("#eyeCatch2").fadeOut().remove();
    }
  );
  return false;
});

})