Embedded Flash Video won't play in IE

Hi. I have this code to embed my video in my website. It is the method used for compatibility with IE, FF and Safari (ipad/iphone). It involves putting the object inside the video tag and having both an .ogg and an .mp4 file. For some reason, IE’s won’t play this. This works in all the other browsers. What am I missing?

<video width=“640” height=“480” controls=“true”>
<source src=‘video/Down_This_Road.mp4’ type=‘video/mp4’ />
<source src=‘video/down_this_road.ogg’ type=‘video/ogg; codecs=“theora, vorbis”’ />

&lt;object id="flowplayer" data="flowplayer/flowplayer-3.2.4.swf" type="application/x-shockwave-flash" width="640" height="480" &gt;
    &lt;param name="movie" value="flowplayer/flowplayer-3.2.2.swf"&gt;
    &lt;param name="allowfullscreen" value="true"&gt;
    &lt;param name="flashvars" value="config={'clip':{'url':'video/Down_This_Road.mp4','autoPlay':false}}"&gt;
&lt;/object&gt; 

</video>

yes, maybe as following as mine working: (expressInstall.swf = swfobject default one);
and sounds track maybe inside swf.


<div>
<script type=“text/javascript” src=“swfobject.js”></script>
<script type=“text/javascript”>
swfobject.embedSWF(“your_flash.swf”, “example”, “200”, “100”, “10.0.0”, “expressInstall.swf”);
</script>
<div id='example">
<h1>Contents</h1>
<p><a href=“http://www.adobe.com/go/getflashplayer”><img src=“http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif” alt=“Get Adobe Flash player” /></a></p>
</div>
</div>

For reference only.
Ked

use swfobject it is better