I actually started with hover, with something along the lines of... ---------(snip) $("#trigger_news").hover( function () {$("#news").addClass("news_on");}, function () {$("#news").removeClass("news_on");$ ("#news").addClass("news");}); ---------(/snip)
...which sadly wound up producing the same result. This is using jQuery 1.2.3. On Mar 6, 5:34 am, h0tzen <[EMAIL PROTECTED]> wrote: > use jquerys specific hover-method which workarounds the browser- > failures of mouseover/mouseout. > in the recent jquery-plugin there are also new virtual events > mouseenter, mouseleave i think, which wrap > mouseouver and mouseout and are used by hover() > > $(elem).hover(overFn, outFn)