Try closing the script tags with the HTML method:
<script type="text/javascript" src="jQuery/jQuery.js"></script>
<script type="text/javascript" src="jQuery/effects.js"></script>
The reason for this is probably because IE cannot parse XHTML, instead it tries to convert XHTML to plain HTML and chokes the script tags, which uses final-slash to close.
David source
share