fade question

fade question

I'm really really new to jquery and ever to javascript. so I have this piece of code:

//fade thumb images
   $('#inspiration_index img').hover(function() {
      $(this).stop().fadeTo("slow", 0.5);
   }, function() {
      $(this).stop().fadeTo("slow", 1);
   });


Ok so basically what happens is, when you roll over a image within the #inspiration_index container, it'll fade and the others won't. but that's not what I want, I want the rolled over image to stay normal, and the other images within the #inspiration_index container to fade.

how is that possible?

thank you very much