画像のフェード(マウスオーバー時)
hover.js
背景色のフェード(マウスオーバー時)
jquery.color.js
jQuery(function() {
jQuery('#menu-menu1 a').hover(
function(){
jQuery(this).stop().animate({backgroundColor: '#F5BCD6'},300);
},
function () {
jQuery(this).stop().animate({backgroundColor: '#ED86B5'},600);
}
);
});