jQuery(document).ready(function() {
  jQuery('#scroll-top').click(function() {
    var targetOffset = jQuery('#top-link').offset().top;
	jQuery('html,body').animate({scrollTop: targetOffset}, 1000);
  });
  jQuery('#photo-area-link').click(function() {
    var targetOffset = jQuery('#photo-area').offset().top;
	jQuery('html,body').animate({scrollTop: targetOffset}, 1000);
  });	
});
