jQuery Active X bug in IE?

I just got done fixing one problem and now I have another. I’m using a jquery script in my site and when I test it in IE8 I am getting the Active X control dialogue thing. I don’t want my users to have to click that for a simple jquery plug in. Does anyone know how to fix this? Here is my HTML for the page…

<!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Transitional//EN” “http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd”>
<html xmlns=“http://www.w3.org/1999/xhtml”>
<head>
<meta http-equiv=“Content-Type” content=“text/html; charset=utf-8” />

<link rel=“icon” href=“siteimages/favicon.gif” type=“image/gif”>

<link rel=“stylesheet” href=“CSS/style.css” type=“text/css” media=“screen” />
<link rel=“stylesheet” href=“CSS/navbar.css” type=“text/css” media=“screen” />
<link rel=“stylesheet” href=“fancybox/jquery.fancybox-1.3.0.css” type=“text/css” media=“screen”>

<script type=“text/javascript” src=“http://code.jquery.com/jquery-1.4.2.min.js”></script>
<script type=“text/javascript” src=“fancybox/jquery.fancybox-1.3.0.pack.js”></script>

<title>Gilles Photography</title>

</head>

<body>

<div id=“home”>
<p>gillesphotography.com // <a href=“index.html”>home</a></p>
</div>

<div id=“logo”><img src=“siteimages/Banner_01_01.png” alt=“Banner” width=“450” height=“144” />
</div>

<div id=“navcontainer”>
<ul id=“navlist”>
<li id=“active”>
<a href=“index.html” id=“current”>Home</a></li>
<li><a href=“galleries.html”>Galleries</a></li>
<li><a href=“about.html”>About</a></li>
<li><a href=“contact.html”>Contact</a></li>
<li><a href=“purchase.html”>Purchase</a></li>
</ul>
</div>

<div id=“images”>
<div id=“main-content”>
<ul>
<li><a href=“bw.html”><img src=“galleries/galleryheaders/gallery-1.jpg” alt=“The thumb” border=“0” /><span>Black & Whtie</span></a></li>
<li><a href=“arch.html”><img src=“galleries/galleryheaders/gallery-2.jpg” alt=“The thumb” border=“0” /><span>Architecture</span></a></li>
<li><a href=“auto.html”><img src=“galleries/galleryheaders/gallery-3.jpg” alt=“The thumb” border=“0” /><span>Automobiles</span></a></li>
<li><a href=“fauna.html”><img src=“galleries/galleryheaders/gallery-4.jpg” alt=“The thumb” border=“0” /><span>Fauna</span></a></li>
<li><a href=“flora.html”><img src=“galleries/galleryheaders/gallery-6.jpg” alt=“The thumb” border=“0” /><span>Flora</span></a></li>
<li><a href=“sports.html”><img src=“galleries/galleryheaders/gallery-7.jpg” alt=“The thumb” border=“0” /><span>Sports</span></a></li>
<li><a href=“landscapes.html”><img src=“galleries/galleryheaders/gallery-8.jpg” alt=“The thumb” border=“0”/><span>Landscapes</span></a></li>
</ul>
</div>
</div>

<div id=“footer”>© Copyright 2010 Gilles Photography
</div>

</body>
</html>