iframe inside jquery dialog reloads content every time another dialog get focus

iframe inside jquery dialog reloads content every time another dialog get focus

After upgrading to UI 1.10 I got the problem of reloading my iframe contents inside dialogs.
I have multiple dialogs in the page and by clicking each one the other dialogs will reload their iframe contents.
In jquery.ui.dialog.js, moveToTop function calls insertBefore on other dialogs that cuased the iframe reload problem:

_moveToTop: function( event, silent ) {
var moved = !! this.uiDialog.nextAll(":visible").insertBefore( this.uiDialog ).length;
if ( moved && !silent ) {
this._trigger( "focus", event );
}
return moved;
},