To be certain of a solution I would need to see the markup and experiment with it. However, I seem to remember something like this coming up before. In that case we created an onmouseover event for the iframe, taking advantage of code from the ssm.js that closed the menu:
HTML Code:
<iframe onmouseover="moveBack()"></iframe>
Of course the onmouseover would simply be added to the other existing iframe attributes. This may also need to be applied to the individual pages that get loaded into the iframe. If needed, it could be added to their body tags like so:
HTML Code:
<body onmouseover="parent.moveBack()">
Once again, simply adding to any existing body tag attributes.
Bookmarks