Dear Steve,
The submenu does not show in IE (ever) because it is hidden behind the Flash applet. To correct this issue you need to add the “wmode=transparent” parameter to the Flash applet.
Specifically you need to change the following code in your page:
<script type="text/javascript">
AC_FL_RunContent('codebase','http://download.macromedia.com/pub
/shockwave/cabs/flash/swflash.cab#version=9,0,28,0','width','970',
'height','252','title','ProClean Carpet and Upholstery', 'src',
'flash/main', 'quality','high','pluginspage',
'http://www.adobe.com/shockwave/download/download.cgi?
P1_Prod_Version=ShockwaveFlash','movie','flash/main' ); //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,28,0" width="970"
height="252" title="ProClean Carpet and Upholstery">
<param name="movie" value="flash/main.swf" />
<param name="quality" value="high" />
<embed src="flash/main.swf" quality="high"
pluginspage="http://www.adobe.com/shockwave/download/download.cgi?
P1_Prod_Version=ShockwaveFlash"
type="application/x-shockwave-flash" width="970"
height="252"></embed>
</object>
</noscript>
With this:
<script type="text/javascript">
AC_FL_RunContent('codebase','http://download.macromedia.com/pub
/shockwave/cabs/flash/swflash.cab#version=9,0,28,0','width','970',
'height','252','title','ProClean Carpet and Upholstery', 'src',
'flash/main', 'quality','high', 'wmode','transparent','pluginspage',
'http://www.adobe.com/shockwave/download/download.cgi?
P1_Prod_Version=ShockwaveFlash','movie','flash/main' ); //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,28,0" width="970"
height="252" title="ProClean Carpet and Upholstery">
<param name="movie" value="flash/main.swf" />
<param name="quality" value="high" />
<param name="wmode" value="transparent" />
<embed src="flash/main.swf" quality="high"
pluginspage="http://www.adobe.com/shockwave/download/download.cgi?
P1_Prod_Version=ShockwaveFlash"
type="application/x-shockwave-flash" wmode="transparent"
width="970" height="252"></embed>
</object>
</noscript>
(note the change is in three places marked in red)
Regards,
Kostas
Likno Customer Support
www.likno.com
Create any type of javascript menu (CSS menu, drop-down menu, sliding menu), button, html tree, modal window, tooltip, accordion, tab, scroller, jQuery slider or design for your websites!
Like us on Facebook – Follow us on Twitter