$(document).ready(function(){

/*	リンクのフェード効果	*/
$("a img").fadeTo(0,1.0);
$("a img").hover(function(){
        $(this).fadeTo(500,0.5);
    },
    function(){
        $(this).fadeTo(500,1.0);
    });
    
$("#topheaderNavi li a").fadeTo(0,1.0);
$("#topheaderNavi li a").hover(function(){
        $(this).fadeTo(500,0.5);
    },
    function(){
        $(this).fadeTo(500,1.0);
    });

$("#headerNavi li a").fadeTo(0,1.0);
$("#headerNavi li a").hover(function(){
        $(this).fadeTo(500,0.5);
    },
    function(){
        $(this).fadeTo(500,1.0);
    });

    
$(".specialLink a").fadeTo(0,1.0);
$(".specialLink a").hover(function(){
        $(this).fadeTo(500,0.5);
    },
    function(){
        $(this).fadeTo(500,1.0);
    });
     
$(".materialLink a").fadeTo(0,1.0);
$(".materialLink a").hover(function(){
        $(this).fadeTo(500,0.5);
    },
    function(){
        $(this).fadeTo(500,1.0);
    });

$("#toTop a").fadeTo(0,1.0);
$("#toTop a").hover(function(){
        $(this).fadeTo(500,0.5);
    },
    function(){
        $(this).fadeTo(500,1.0);
    });
    
$("#siteTitle a").fadeTo(0,1.0);
$("#siteTitle a").hover(function(){
        $(this).fadeTo(500,0.5);
    },
    function(){
        $(this).fadeTo(500,1.0);
    });


});

