function don't work on new elements

function don't work on new elements

Hi,

this only works with existing elements, if i add later some images with the class "fader" they don't fade.

$(document).ready(function()

{
   
$("img.fader").hover(function(){$(this).fadeOut(100);$(this).fadeIn(500);});
   
});


Thanks for any hints!