$(function() {
  // 外部リンクアイコン
  $('a[target=_blank]').not($('a[target=_blank] img').parents('a')).not($('a[href$=".pdf"]')).wrap($('<span>').addClass('blank'));
  // PDFアイコン
  $('a[href$=".pdf"]').not($('a[href$=".pdf"] img').parents('a')).wrap($('<span>').addClass('pdf'));
  // 画像フェード
  $('a img').not('.home #text a img, .home dl.section03 a img, .home dl.section04 a img, .works #load_contents a img, .works #thumbimg li a img').hover(
    function() { $(this).stop(true, false).fadeTo('', 0.5); },
    function() { $(this).fadeTo('', 1); }
  );
  // スクロール
  if ($(location.hash).length) {
    $(window).load(function() {
      $('html, body').scrollTop(0).animate({scrollTop : $(location.hash).offset().top - 30}, 250);
    });
  }
  $('a[href*=#]').not($('a[href=#]')).click(function() {
    var hash = $(this).attr('href').replace(/.*(#.+)/, '$1');
    if ($(hash).length) {
      $('html, body').animate({scrollTop : $(hash).offset().top - 30}, 250);
      return false;
    }
  });
});

