I wish I could, it's still under development and only available on our
internal servers.
Here's the code though for the 3-part intro movie:
<script type="text/javascript" src="flash/swfobject.js"></script>
<script type="text/javascript">
var flashvars = {};
var params = {};
params.quality = "high";
params.scale = "exactfit";
params.wmode = "transparent";
params.allowfullscreen = "false";
params.allowscriptaccess = "sameDomain";
var attributes = {};
/*
attributes.id = "logoani";
attributes.align = "top";*/
swfobject.embedSWF("flash/recruitingintro_main2.swf",
"flashIntroContent", "600", "300", "7.0.0", false, flashvars, params,
attributes);
</script>
<body>
<div id="flashIntroContent">
<p>This Flash movie requires a newer version of the Flash plugin.
<br />Please <a href="
http://www.adobe.com/shockwave/download/
download.cgi?P1_Prod_Version=ShockwaveFlash&promoid=BIOW">click here</
a> to obtain an upgrade.</p></div>
</div>
</body>
And for the real simple flash banner that is not loading any
additional swf's:
<script type="text/javascript" src="flash/swfobject.js"></script>
<script type="text/javascript">
var flashvars = {};
var params = {};
params.quality = "high";
params.scale = "exactfit";
params.wmode = "transparent";
params.allowfullscreen = "false";
params.allowscriptaccess = "sameDomain";
var attributes = {};
attributes.id = "bannerShow";
/*attributes.align = "center";*/
swfobject.embedSWF("photobanner.swf", "flashcontent", "445", "85",
"8.0.0", false, flashvars, params, attributes);
</script>
<div id="photos">
<div id="photosLeft">
<div class="banner"><!-- rotating banner area -->
<div id="flashcontent"></div>
</div> <!-- end rotating banner photo -->
</div></div>
The css for the 'flashcontent' div has only some margin/padding
settings on it.
Hope that'll help.
Thanks !