Always Clicking Twice with .toggle()

Always Clicking Twice with .toggle()

Hello!

I'm very new to jquery and have been trying countless examples to get this work but I've worked on it for over a week with no success, so I thought I'd try the forums.

I have a page with the code below (you can see the page here  http://thegamingmall.com/realsite/testing.html).  I'm using the .toggle() function to show/hide a div tag.  However you ALWAYS need to click it twice!  It's driving me and the users insane.  Does anyone have an idea of what I've done wrong here?

THANK SO MUCH FOR YOUR HELP!!!

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. </head>
  5. <script type="text/javascript" src="../jquery.js"></script>
  6. <script type="text/javascript">
  7. $(document).ready(function() {
  8.        $('div.slide').toggle(function() {
  9.                $('div.view').fadeIn('slow');

  10.                
  11.        }, function() {
  12.                        $('div.view').fadeOut('fast');
  13.                        return false;
  14.                });
  15. });
  16. </script>
  17. <div class="slide" style="cursor: pointer; text-decoration:underline;">Toggle Vital Steps</div>
  18. <div class="view">yoyooyoyoyoyoy </div>
  19. </body>
  20. </html>