[jQuery] IE7 not loading jquery in WP
jquery isn't loading right in IE 6 & 7 on http://centermassshootingschool.com/
you can look at the source code, but essentially this is where the
problem is ...
<script type="text/javascript">
$(document).ready(function(){
$("#tabs").tabs({fx:{opacity:'toggle'}});
$('.slideshow').cycle({
fx:'fade',
speed: 4000,
});
});
</script>
when you take away
$('.slideshow').cycle({
fx:'fade',
speed: 4000,
});
then everything works fine.
It works fine in all other browsers. How do i fix this?