thumbnail src - fadeIn effect

thumbnail src - fadeIn effect

Hi all.

I am trying to get this fading in.
It does show the src of the thumbnail at img#big .... I don't seem to get the fade in working or maybe another nice transition.
what am I doing wrong?

tia Gina
  1. $(document).ready(function(){
        $("img.small").bind('mouseenter', function(e){
            $("img#big").attr('src', $(this).attr('src')).fadeIn('slow');
        });
    });