Here's how I implemented this for now...
I modified iui.js to look for an onload attribute after sliding:
<code>
percent = 0;
if (!hasClass(toPage, "dialog"))
fromPage.removeAttribute("selected");
clearInterval(timer);
checkTimer = setInterval(checkOrientAndLocation, 300);
setTimeout(updatePage, 0, toPage, fromPage);
if ( toPage.getAttribute("onload") ) {
eval(toPage.getAttribute("onload"));
}
</code>
Now I can simply put an onload attribute in my page tag per the
previous example. Haven't tested this thoroughly, but it got me past
my current hurdle.
David