Image caption with opacity fade.

Image caption with opacity fade.

Ive used this tutorial:  http://web.enavu.com/tutorials/making-image-overlay-caption-using-css/

And added this jquery code to make the fading:
  1.   $("div.wrapper").mouseover(function() {
  2.     $('div.wrapper').fadeTo("slow",1);
  3.   }).mouseout(function(){
  4.     $('div.wrapper').fadeTo("slow",0.5);
  5.   });
But when I hover over the Wrapper DIV the Description DIV also fades.
I want the Description DIV to remain at 100 opacity even when I hover over the wrapper.

Is that possible?