One other thing... noticed your "Does not work with IE" at the top. You can correct this very easily.
First download the file attatched. inside are 2 JS files, in a folder named "scripts" upload that folder to your root directory, as is. no need to edit the files at all.
then find this area in your source:
Code:
<div style="margin-left:100px;">
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="503" height="578" id="anjagallery" align="middle">
<param name="allowScriptAccess" value="sameDomain" />
<param name="movie" value="anjagallery.swf" /><param name="quality" value="high" /><param name="bgcolor" value="#ece9d8" /><embed src="anjagallery.swf" quality="high" bgcolor="#ece9d8" width="503" height="578" name="anjagallery" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />
</object>
</div>
And replace it with this:
Code:
<div style="margin-left:100px;">
<noscript>
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="503" height="578" id="anjagallery" align="middle">
<param name="allowScriptAccess" value="sameDomain" />
<param name="movie" value="anjagallery.swf" />
<param name="quality" value="high" />
<param name="bgcolor" value="#ece9d8" />
</object></noscript>
<script language="JavaScript" type="text/javascript" >
<!--
AC_RunFlContentX ("movie", "anjagallery", "quality", "high", "src", "anjagallery", "width", "503", "height", "578" );
//-->
</script>
</div>
then add this inside your <head></head> tags:
Code:
<script src="/scripts/AC_RunActiveContent.js" language="JavaScript" type="text/javascript"></script>
<script src="/scripts/AC_Flash.js" language="JavaScript" type="text/javascript"></script>
Save and upload the HTML file to the server. Done deal. now it is valid HTML and will work with any IE and NS browser 5.5 or higher. 
For future reference on how this is done bookmark this link:
http://learningflashmx.com/fix_activex.htm
also note as long as you have this line:
Code:
<param name="movie" value="anjagallery.swf" />
You can remove the <embed...blah blah /> tag from the code
Bookmarks