ok, try this then

$(document).ready(function() {
   $(".navbutton").not("#active").hover(function(){
       $(this).stop().siblings(".rollover").animate({opacity: 1},300);
   },function(){
       $(this).stop().siblings(".rollover").animate({opacity: 0},300);
   });
});

adamscybot wrote:
I tried this but it had no affect.

I also tried stop() after siblings(".rollover"). which appears to work
but permanently breaks the nav bar if you move your mouse over it
quickly.

Reply via email to