I'm using overlay with expose in an iframe and am running into a situation where on IE7 and IE8 it appears to get into an infinite loop attempting to resize as it ping pongs back and forth between two sizes. (The issue I think is documented here:http://remysharp.com/2008/05/15/windowonresize-hangs-ie6-and-ie7/

It seems to only happen in a very, very specific set of circumstances (that of course I've managed to trigger) that I haven't been able to distill into a simple test case yet. See the resize code below:

 b(window).resize(function() { e.fit(); });
        b.extend(this, {
            getMask: function() { return d },
            getExposed: function() { return h },
            getConf: function() { return g },
            isLoaded: function() { return f },
            load: function() {
....
Instead of an anonymous function that calls fit either don't call it or create an empty function and IE no longer generates an infinite loop. IE does throw up scroll bars on the iframe (which I assume the fit code handles). AFAICT FF, Chrome etc... seem to continue to work as before/normal with this change (at least with my usage of overlays).

Since the example is behind a password protected site I'd be glad to provide access to jQuery tools developers if asked and rollback changes to show bug and help get it resolved.

Any investigation, comments or suggestions appreciated.

Peter