// JavaScript Document

$(function(){



    $('a img').hover(
        function() {
            $(this).stop().animate({"opacity":0.6});
        },
        function() {
            $(this).stop().animate({"opacity":1});
        }
    );


//栄養クイズ用指やじるし
    $('.answer li').hover(
        function() {
            $(this).attr("class","hov");
        },
        function() {
            $(this).attr("class","");
        }
    );



});

