[jQuery] 15 second delay with IE

[jQuery] 15 second delay with IE


Hi,
I am truly impressed with JQuery but I have an approx 15 sec delay to
open a page in IE (version 7.0) that uses JQuery. No such problem
with Firefox and Opera where a page opens instantly.
Can anyone offer any help? I have been using a basic example, as
below, but can not get rid of the delay.
Thanks, mike
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://
www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"
lang="en">
<head>
<title>JQuery: Collapsible Menu</title>
<script type="text/javascript" src="js/jquery.js"></script>
<script type="text/javascript">
$(document).ready(function(){
    $("#div1").mouseover(function(){
        $("#div2").slideDown('fast');
    });
    $("#div1").mouseout(function(){
        $("#div2").slideUp('fast');
    });
});
</script>
</head>
<body>
<div id="div1" style="border: solid 1px silver;">div1 - Navigation
1</div>
<div id="div2" style="display:none;background-color:pink;">div2 -
Welcome to the Navigation 1 area </div>
</body>
</html>