//imgLink
$(document).ready(function(){
$("#item a img").fadeTo(0,1.0);
$("#item a img").hover(function(){
        $(this).fadeTo(200,0.6);
    },
    function(){
        $(this).fadeTo(300,1.0);
    });
});
$(document).ready(function(){
$(".button a img").fadeTo(0,1.0);
$(".button a img").hover(function(){
        $(this).fadeTo(200,0.6);
    },
    function(){
        $(this).fadeTo(300,1.0);
    });
});
$(document).ready(function(){
$("#shop a img").fadeTo(0,1.0);
$("#shop a img").hover(function(){
        $(this).fadeTo(200,0.6);
    },
    function(){
        $(this).fadeTo(300,1.0);
    });
});

