//banner $(document).ready(function(){ $('.flexslider').flexslider({ directionNav: true, pauseOnAction: false }); }); /*通用切换*/ $(function(){ function tabs(tabTit,on,tabCon){ $(tabCon+">div:not(:first)").hide(); $(tabCon).each(function(){ $(tabCon+">div").eq(0).show(); }); $(tabTit).each(function(){ $(tabTit +">ul>li").eq(0).addClass(on); }); $(tabTit +">ul>li").hover(function(){ $(this).addClass(on).siblings().removeClass(on); var index = $(tabTit +">ul>li").index(this); $(tabCon+">div").eq(index).show().siblings().hide(); }); } tabs(".linksa","hover",".show"); }); $(".hospital_redream_relation").mouseenter(function () { $(this).find('img').eq(0).hide(); $(this).find('img').eq(1).show(); }).mouseleave(function () { $(this).find('img').eq(0).show(); $(this).find('img').eq(1).hide(); }); $("#note").mouseenter(function(){ $(".hospital_redream_relation_move_note").show(); }).mouseleave(function(){ $(".hospital_redream_relation_move_note").hide(); });