$("#notification").slideDown("slow").delay(2000).slideUp("slow");
.. works, but I want to add a condition so that if #notification is hovered, the timer/delay is stopped until mouseout. Then On mouseout the timer starts and then eventually the element is hidden (unless its not hovered again).
Thanks!