// javascript document $(function(){ function hovershow(hoverid,contid,addstyle) { $("."+hoverid+">a").hover(function(){ var i=$("."+hoverid+">a").index(this); $(this).addclass(addstyle).siblings().removeclass(addstyle); $("."+contid).children("div").eq(i).show().siblings().hide(); }) } hovershow("home_news_block_tt","home_news_cont","home_news_block_tt_hover"); hovershow("home_ys_nav","home_ys_cont","home_ys_nav_hover"); //$(".mid_tt1>a").hover(function(){ // var i=$(".mid_tt1>a").index(this); // $("#dt_cont").children("div").eq(i).show().siblings().hide(); // }) })