function Tab(){ $(".tab_a").each(function(i){ $(".tab_a").eq(i).hover(function () { $(".tab_a:eq("+i+") .hideBox").fadeIn(500); }, function () { $(".tab_a:eq("+i+") .hideBox").hide(); }); }); } function Tab1(){ $(".boxhead .tab1").each(function(i){ $(this).mouseover(function(){ $(".tab").css("background-image","url(images/menu"+(i+1)+".jpg)") $(".boxtbody").hide().eq(i).show(); }) }) }
|
|
|
|
|
|
|
|