You need to include the following CSS rule in some way on your page:
#main-menu {
z-index:8000;
}
You could add it to an external CSS file and link it on your page or even include it directly in your page source like this:
<style type="text/css">
#main-menu {
z-index:8000;
}
</style>