$(function () { $("#menu > div").hover(function () { var a = $(this).find(".show_sub"); if (a.is(":hidden")) { a.slideDown(300) } }, function () { $(this).find(".show_sub").slideUp(300) }); $("#top_fav ul li:eq(2)").hover(function () { $("#shopping_car").show() }, function () { $("#shopping_car").hide() }); $("#shopping_car").hover(function () { $(this).show() }, function () { $(this).hide() }); $("#focusPic").Slide({ effect: "scroolY", speed: "normal", timer: 3000 }); $("#expert").Slide({ effect: "scroolX", speed: "normal", timer: 3000 }) });
        $(function () { $("#focusPic").Slide({ effect: "scroolY", speed: "normal", timer: 3000 }); $("#expert").Slide({ effect: "scroolX", speed: "normal", timer: 3000 }); $(".test .testcont:not(:last)").hide(); $(".test .testimg").each(function (a) { $(this).mouseover(function () { $(".test .testcont:visible").hide(); $(".test .testcont:eq(" + a + ")").show() }) }) });
