I don't want movie to open in new page

I don't want movie to open in new page

Hi

I'm new to jQuery, and have never used a plugin before.  I am trying to use embedquicktime to put a QT movie into a web page.  As a trial, I have set up a very simple page with eqt, and used the code generator at  http://www.solitude.dk/archives/embedquicktime/#codegenerator to do the donkey work.

I get a jpg thumbnail as expected, and when I click on it, the .mov starts to play.  The only trouble is that this happens on a new blank page, rather than on the original page, which was my intention.

I must be doing something very silly, but can't see what it is.

The jq is:
<script type="text/javascript" 
  src="http://../../js/jquery.js"></script>
<script type="text/javascript" 
  src="http://../../js/jquery.embedquicktime.js"></script>
<script type="text/javascript">
  jQuery.noConflict();
  jQuery(document).ready(function() {
    jQuery.embedquicktime({
      jquery: 'http://../../js/jquery.js', 
      plugin: 'http://../../js/jquery.embedquicktime.js';
 
    });
  });

The html is:
<div class="hvlog"> <a href="MTImages/MathTrigVideoSmall.mov" rel="enclosure"> <img src="MTImages/MathTrigVideoSmallMod.jpg"></a> </div>

Thanks

Richard