﻿$(function() {
    $("#photochangecontent img").mousemove(
											  function() {
											      var h = $(this).attr("src");
											      $("#showPhoto").attr("src", h);
											     
											      $("#jumto").attr("href",$(this).attr("jumpto"));
											  }
											  );
    $("#photochangecontent img:first-child ").mousemove();
});