// JavaScript Document //rollover jQuery(function($){ //droppy tk_menu $('.tk_menu').droppy({speed: 100}); $('.tk_menu > li,.tk_headerMain .tk_lang li,.tk_headerMain .tk_btn_access,.tk_rssBtn li,.tk_blog_pagetop') .each(function(){ var bgName = $(this).find('img').attr('src').replace('.gif', '_o.gif'); $(this).css('background', 'url('+bgName+') no-repeat') }) .find('img:not([src$="_o.gif"])').hover( function(){ $(this).stop().animate({'opacity' : '0'}, 200); }, function(){ $(this).stop().animate({'opacity' : '1'}, 200); } ); //tk_footerLinksIn $('.tk_footerLinksIn li').click(function(){ window.location=$(this).find("a").attr("href"); return false; }); $('.tk_menu > li li a,.tk_footerLinksIn li').hover( function(){ change_color($(this), 'a', '#333333','#ffffff'); }, function(){ change_color($(this), 'a', '#ffffff','#333333'); } ); function change_color(target, child, bgcolor, color){ target.animate({ backgroundColor: bgcolor, color: color }, 200), $(child ,target).animate({ color: color }, 200) } //サイト内検索select $('.tk_status').easySelectBox(); $('.tk_categories').easySelectBox({speed:100}); //bgiframe $('.tk_menu li .tk_navi02').bgiframe(); });