Close dialog box and maintain scroll position

Close dialog box and maintain scroll position

When I close my dialog box it scrolls to the top.
How can I close it and maintain the scroll position?

  1. $("#dialog-container").dialog({
  2.                 title: "MyTitle",
  3.                 width: 'auto',
  4.                 height: 'auto',
  5.                 modal: true,
  6.                 open: function () {
  7.                     jQuery('.ui-widget-overlay').bind('click', function () {
  8.                         jQuery('#dialog-container').dialog('close');
  9.                     });
  10.                 }           
  11.             });//End dialog

For some reason and occasionally it keeps the scroll position.
I'm trying to figuring out why this sometime works, but I don't seem to find a reason.