Flash Object affecting Layout?

I have read a ton of good things about the Flashobject script that will help with not only SEO but also fix the IE “click here to activate problem”.

I followed the Kirupa generator but it seems to have messed up my layout of my page.

I changed the following section:


<div class="bigflashlogo">
 <object type="application/x-shockwave-flash"
  data="flash/flash1.swf?path=flash/traneshow.swf" 
  width="522" height="150">
  <param name="movie" value="flash/flash1.swf?path=flash/kingshow4.swf" />
  <p>You need to install Adobe Flash player to see this site properly! Please click <a href="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash" title="MacroMedia" target="_blank">here</a> to install Adobe Flash player.</p>
 </object>
  </div>

TO:


 
 
<script type="text/javascript" src="flashobject.js"></script>
<div id="bigflashlogo" style="width: 522px; height: 150px"></div>
<script type="text/javascript">
var fo = new FlashObject("/flash/kingshow4.swf", "animationName", "522", "150", "8", "#FFFFFF");
fo.addParam("allowScriptAccess", "sameDomain");
fo.addParam("quality", "high");
fo.addParam("scale", "noscale");
fo.addParam("loop", "false");
fo.write("bigflashlogo");
</script>
 

It doesn’t seem to let my “kinglogo” div butt up to the left of the above “bigflashlogo”.

It turned this page:

To this page:

http://www.kingairinc.com/indexjacked.html

CSS here:

http://www.kingairinc.com/king.css

Thanks in advance!

CypSteel