Simple mouseover issue

Simple mouseover issue

Hi
I am bran new at JQuery and need some assistance with something probably very simple:

I would like to display an image and on moueover or mouseenter want to fade the pic completely to show a div with text in it.
On mouseleave would like to unfade the pic to now hide the text.

Here is what I have so far the mouseenter works but the last part not so much. Any help would be greatly appreciated. I ultimately am planning on having 4 different images and text divs on the same page

  1. <html>
  2. <head>
  3.   <style>
  4. p { width:120px; margin:0; padding:5px; }
  5. div { width:250px; height:250px; position:absolute; }
  6. div#one { top:0; left:0; background-image: url(../../../img/eye.png)}
  7. </style>
  8.   <script src="http://code.jquery.com/jquery-latest.js"></script>
  9. </head>
  10. <body>
  11. <p>This is my sample text</p>

  12. <div id="one"></div>
  13. <script>
  14. $("div").mouseenter(function(){
  15. $(this).fadeTo("slow", 0.11);
  16. }).mouseleave(function(){
  17.           $("div").fadeIn(3000);
  18.   });
  19. </script>
  20. </body>
  21. </html>