

$(":jqmData(role='page')").live("pageshow", function (event) {
    var $page = $(this);

    // For the demos that use this script, we want the content area of each
    // page to be scrollable in the 'y' direction.

    $page.find(".ui-content").attr("data-" + $.mobile.ns + "scroll", "y");

    // This code that looks for [data-scroll] will eventually be folded
    // into the jqm page processing code when scrollview support is "official"
    // instead of "experimental".

    $page.find(":jqmData(scroll):not(.ui-scrollview-clip, .ui-scroll-prevent)").each(function () {
        var $this = $(this);
        // XXX: Remove this check for ui-scrolllistview once we've
        //      integrated list divider support into the main scrollview class.
        if ($this.hasClass("ui-scrolllistview")) {
            $this.scrolllistview();
        } else {
            var st = $this.jqmData("scroll") + "",
				paging = st && st.search(/^[xy]p$/) != -1,
				dir = st && st.search(/^[xy]/) != -1 ? st.charAt(0) : null,

				opts = {
				    direction: dir || undefined,
				    paging: paging || undefined,
				    scrollMethod: $this.jqmData("scroll-method") || undefined
				};

            $this.scrollview(opts);
        }
    });

    

    // For the demos, we want to make sure the page being shown has a content
    // area that is sized to fit completely within the viewport. This should
    // also handle the case where pages are loaded dynamically.

    ResizePageContentHeight(event.target);
});



