Well, I was just viewing your site in FF and though I thoroughly enjoyed it, especially the QT animation, I could see no scrollbars other than the one on the page itself. To prevent scrollbars from appearing on (i)frames, the surest method is to set the style on the page showing through the (i)frame:
Code:
<style type="text/css">
body {
overflow:hidden;
}
</style>
You can also set the scrolling attribute on the frame or iframe:
Code:
<iframe scrolling="no" frameborder="0"></iframe>
However, usually, just setting it to auto is enough if you make absolutely sure the content that will show through it will not exceed the (i)frame's dimensions by even a single pixel.
Bookmarks