Fadein fadeout works ok, but not always! [SOLVED]

Fadein fadeout works ok, but not always! [SOLVED]

On page http://sarota.net/?p=1048 I did post with three images with same id, after that used code to fade it, but it works only for first picture. For me is very strange because at the bottom are small random pictures with different ids, and it works perfect!

$("#panoz").fadeTo("normal", 0.8);
                     $("#panoz").hover(function(){
                     $(this).fadeTo("normal", 1.0);
                     },function(){
                     $(this).fadeTo("normal", 0.8);
                     });


I'm beginner and I'm bit confused, did I something wrong?