Why slideToggle and slideDown fails to work only in chrome?

Why slideToggle and slideDown fails to work only in chrome?

Hello guys,
I'm making a site where plants grow(expand) when the page is onload. It is working out great and it looks great, but in Chrome I only get to see the end of the "animation". So if you see my code it lasts 6 seconds in chrome and by then the picture pops up. Can anyone explane this, with text instead of pictures it seems to work in chrome.
This is an test html:

Kind regards...
  1. <!DOCTYPE HTML>
  2. <html>
  3.     <head>
  4.         <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
  5.         <title>test</title>
  6. <script type="text/javascript" src="Jquery/jquery-1.7.2.js"></script><script type="text/javascript"></script>
  7.         <script>
  8.             $(document).ready(function(){
  9.    $('#test').slideDown(6000);
  10. });

  11.         </script>
  12. <style>
  13. #test{
  14. position:absolute;
  15. bottom:0;
  16. display:none;
  17. height: auto;}
  18. </style>
  19.     </head>
  20. <body>
  21. <img id="test" src="Pictures/rechts.png" alt="" />
  22. </body>
  23. </html>