﻿if(document.referrer.indexOf("http://schools.archchicago.org/") == -1) {
    if (document.addEventListener)
        document.addEventListener("DOMContentLoaded", init_slideshow, false)
    else
        window.onload = init_slideshow;
}

function init_slideshow() {
    var show = new SlideShow("http://schools.archchicago.org/slideshows/intro.xml", {});
    document.getElementById("Page").appendChild(show.e);
    document.getElementById("PageBody").style.visibility = "hidden";
    document.getElementById("SideBar").style.visibility = "hidden";
}


