// JavaScript Document
// 各種プラグインの設定 | Ability Consultant


// pngfix
$(function() {
$("img[src$=png]").pngfix();
});

// アニメーションロールオーバー
$(function() {
  $(".imghover")
  .hover( 
    function(){// マウスオーバー時
      $(this).fadeTo(500, 0.7);
    },
    function(){// マウスアウト時
      $(this).fadeTo(500, 1.0);
    }
  );
});

// ギャラリーページ表示用
$(document).ready(function(){
$(".cb_gallery").colorbox({iframe:true,innerWidth:"900px",innerHeight:"495px"});
});

