function miMenu() { $("#nav>li").hover(function () { $(".submenu", this).stop(true, true).slideDown("fast") }, function () { $(".submenu", this).slideUp("fast") }); $("ul#nav li").css({ backgroundPosition: "0px 0px" }).hover(function () { $(this).stop().animate({ backgroundPosition: "(0px -24px)" }, 250) }, function () { $(this).stop().animate({ backgroundPosition: "(0px 0px)" }, 250) }); $(".submenu li a").css({ backgroundPosition: "0px 0px" }).hover(function () { $(this).stop().animate({ backgroundPosition: "(0px -64px)" }, 250) }, function () { $(this).stop().animate({ backgroundPosition: "(0px 0px)" }, 250) }) } function current() { $("#nav a").each(function () { if (this.href == window.location) { $(this).addClass("current") } }) } $(document).ready(function () { miMenu(); current() });



