Jquery Cycle Version: 2.9999.8 not working in Firefox 16.0.2.

Jquery Cycle Version: 2.9999.8 not working in Firefox 16.0.2.

Please help me fix my possible problem in Firefox.

The script below works in Chrome and IE8, but not Firefox 16.0.2.

I'm using XHTML 4.01 transitional, Jquery 1.8.2 and Cycle 2.9999.8

I'm using the following HTML (head and relevant code included)

<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Photo slideshow with Java Scritp</title>
<link href="../styles/photoslide_test1.css" rel="stylesheet" type="text/css" />
<script type="text/jscript" src="../jscripts/jquery-1.8.2.js"> </script>
<script type="text/jscript" src="../jscripts/jquery.cycle.all.js"> </script>  

<script type="text/javascript">

$(document).ready(function(){
   
    $('#myslides').cycle();
   
});

</script>

</head>


<body>

<div id="myslides">
    <img src="../graphics/img_slide01.jpg" />
    <img src="../graphics/img_slide02.jpg" />
    <img src="../graphics/img_slide03.jpg" />
    <img src="../graphics/img_slide04.jpg" />


</div>

</body>

EXTERNAL CSS

body {
    background-color:#F93;
}


#myslides {
   
    padding: 0;
    margin:  0 auto;
}

#myslides img {
    padding: 10px;
    border:  1px solid rgb(100,100,100);
    background-color: rgb(230,230,230);
    width:250px;
    height:200px;
    top:  0;
    left: 0
}

Thanks.