Fade a div + preload the div ?

Fade a div + preload the div ?

've made a small site and the content is in a div, i make this div beeing displayed with a Fade effect.

Only problem is that the div appear first shortly then disapear then re-appear with the fade effect. It's very short but the result is not really good.

Here is my code :

   <script   src="javascript/jquerymin.js" type="text/javascript"> </script>
      <script type="text/javascript">
         $(document).ready(function (){
          $("#content").fadeOut(0, function(){
          $(this).fadeIn(800);
          });
          });
   </script>


Before that i was fading the images not the div and there was that code to load the image before (i guess its like preloading) but it doesn't seem possible to use this on a div :

$(document).ready(function (){
    $("#Picture").load(function(){
        $(this).fadeOut(0, function(){
            $(this).fadeIn(8000);
        });
    });
});


Any help appreciated, i heard about DOM that could be used here, i have no idea, i don't know much… :/