ignore queuing in mouseover/mouseout

ignore queuing in mouseover/mouseout

hi
how can ignore queuing in mouseover/mouseout in such codes like this:
  1. <html>
    <head>
    <title></title>
    </head>
    <SCRIPT language="Javascript" type="text/javascript" src="jquery.js"></SCRIPT>
    <script type="text/javascript">
    $(document).ready( function() {
        $(".content1").mouseover( function() {
           $(this).fadeTo("slow", 0.6);
        });
        $(".content1").mouseout( function() {
           $(this).fadeTo("slow", 1);
        });
       
    })
    </script>
    <body>
    <div class='content1' style="background-color:#666; width:200px; height:200px; margin:20px;">test</div>
    <div class='content1' style="background-color:#666; width:200px; height:200px; margin:20px;">test</div>
    <div class='content1' style="background-color:#666; width:200px; height:200px; margin:20px;">test</div>
    </body>
    </html>





















i dont want cubes blink N times when the user does mouseover/out N times.