Fade addclass

Fade addclass

Im trying to fade/or animate addclass but nothing happens, when i add the second prameter (time) it gets stuck. Any suggestions?

  1. $('.foodlab, .skafferiet').hover(
  2.    function(){ $('body').stop(true).addClass('foodlab-color') },
  3.    function(){ $('body').stop(true).removeClass('foodlab-color') }
  4. )

  1. $('.foodlab, .skafferiet').hover(
  2.    function(){ $('body').stop(true).addClass('foodlab-color', 500) },
  3.    function(){ $('body').stop(true).removeClass('foodlab-color', 500) }
  4. )