Div Over Full Screen Flash Background

Hi, I’m working on a site currently, and I have a fullscreen flash video that has objects that react to the mouse movement and create a parallax effect. A Div container is above the flash video containing the site content. I can display the div content above the flash video just fine, my problem is that the flash video does not recognize the mouse movement when the mouse is above the div container? Is there any way to fix this or will I have to create the site entirely in flash?

Here is the code:

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>mouse_follow</title>
<script language="javascript">AC_FL_RunContent = 0;</script>
<script src="AC_RunActiveContent.js" language="javascript"></script>
<style type="text/css">
<!--
body {
    margin-left: 0px;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    background-attachment: fixed;
}

#flash {
   height: 100%;
   position: fixed;
   top: 0;
   width: 100%;
   z-index: 0;
}

-->
</style></head>
<body bgcolor="#ffffff">
<!--url's used in the movie-->
<!--text used in the movie-->
<!-- saved from url=(0013)about:internet -->
<div id="flash">
<script language="javascript">
    if (AC_FL_RunContent == 0) {
        alert("This page requires AC_RunActiveContent.js.");
    } else {
        AC_FL_RunContent(
            'codebase', 'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0',
            'width', '100%',
            'height', '100%',
            'src', 'mouse_follow',
            'quality', 'high',
            'pluginspage', 'http://www.macromedia.com/go/getflashplayer',
            'align', 'middle',
            'play', 'true',
            'loop', 'true',
            'scale', 'noscale',
            'wmode', 'transparent',
            'devicefont', 'false',
            'id', 'mouse_follow',
            'bgcolor', '#ffffff',
            'name', 'mouse_follow',
            'menu', 'true',
            'allowFullScreen', 'false',
            'allowScriptAccess','sameDomain',
            'movie', 'mouse_follow',
            'salign', ''
            ); //end AC code
    }
</script>
<noscript>
    <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0" width="100%" height="100%" id="mouse_follow" align="middle">
    <param name="allowScriptAccess" value="sameDomain" />
    <param name="allowFullScreen" value="false" />
    <param name="movie" value="mouse_follow.swf" /><param name="quality" value="high" /><param name="scale" value="noscale" /><param name="wmode" value="transparent" /><param name="bgcolor" value="#ffffff" />    <embed src="mouse_follow.swf" quality="high" scale="noscale" wmode="transparent" bgcolor="#ffffff" width="100%" height="100%" name="mouse_follow" align="middle" allowScriptAccess="sameDomain" allowFullScreen="false" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />
    </object>
</noscript>
</div>
<div id="layer" style="position:absolute; width:'100%'; height:'100%'; z-index:100; left: 0px; top: 0px">

<p>content goes here including tables, images, all sorts etc</p><p>content goes here including tables, images, all sorts etc</p><p>content goes here including tables, images, all sorts etc</p><p>content goes here including tables, images, all sorts etc</p><p>content goes here including tables, images, all sorts etc</p><p>content goes here including tables, images, all sorts etc</p><p>content goes here including tables, images, all sorts etc</p><p>content goes here including tables, images, all sorts etc</p><p>content goes here including tables, images, all sorts etc</p><p>content goes here including tables, images, all sorts etc</p><p>content goes here including tables, images, all sorts etc</p><p>content goes here including tables, images, all sorts etc</p><p>content goes here including tables, images, all sorts etc</p><p>content goes here including tables, images, all sorts etc</p><p>content goes here including tables, images, all sorts etc</p><p>content goes here including tables, images, all sorts etc</p><p>content goes here including tables, images, all sorts etc</p><p>content goes here including tables, images, all sorts etc</p><p>content goes here including tables, images, all sorts etc</p><p>content goes here including tables, images, all sorts etc</p><p style="color:#CC3366">content goes here including tables, images, all sorts etc</p><p>content goes here including tables, images, all sorts etc</p><p>content goes here including tables, images, all sorts etc</p><p>content goes here including tables, images, all sorts etc</p><p>content goes here including tables, images, all sorts etc</p><p>content goes here including tables, images, all sorts etc</p><p>content goes here including tables, images, all sorts etc</p><p>content goes here including tables, images, all sorts etc</p><p>content goes here including tables, images, all sorts etc</p><p>content goes here including tables, images, all sorts etc</p><p>content goes here including tables, images, all sorts etc</p><p>content goes here including tables, images, all sorts etc</p><p>content goes here including tables, images, all sorts etc</p><p>content goes here including tables, images, all sorts etc</p><p>content goes here including tables, images, all sorts etc</p><p>content goes here including tables, images, all sorts etc</p><p>content goes here including tables, images, all sorts etc</p><p>content goes here including tables, images, all sorts etc</p><p>content goes here including tables, images, all sorts etc</p>


</div> 
</body>
</html>

Thanks,

Matt