// JavaScript Document

$(document).ready(
  function(){
    $("#main_right img , #main_bottom img").hover(function(){ //id設定をする
       $(this).fadeTo("normal", 0.5); // マウスオーバーで透明度変更
    },function(){
       $(this).fadeTo("normal", 1.0); // マウスアウトで透明度変更
    });
  });

$(document).ready(
  function(){
    $("#top_button01 img , #top_button02 img").hover(function(){ //id設定をする
       $(this).fadeTo("normal", 0.0); // マウスオーバーで透明度変更
    },function(){
       $(this).fadeTo("normal", 1.0); // マウスアウトで透明度変更
    });
  });

/*
$(document).ready(
　function(){
	$("#top_button01 img , #top_button02 img")　//id設定をする
		.animate({opacity:0.8});　//透過処理
});
*/
