function StopAllMovies() {
    var movie1;
    var movie2;
    var movie3;
    var movie4;
    var movie5;
    var movie6;
    var movie7;
    var movie8;
    var movie9;
    var movie10;
    var movie11;
    var sPath = window.location.pathname;
    var sPage = sPath.substring(sPath.lastIndexOf('/') + 1);

    if (sPage == "Default.aspx") {
        //debugger
        movie1 = window.document["newspage"];
        movie2 = window.document["puzzler"];
        movie3 = window.document["jokes"];
        movie4 = window.document["pineconeintro"];
        movie5 = window.document["bookubrunch"];
        movie6 = window.document["ourroots"];
        movie7 = window.document["askowl"];
        movie8 = window.document["forneedles"];
        movie9 = window.document["musicutree"];
        movie10 = window.document["pocketofwords"];
        movie11 = window.document["search"];

        if (movie1) {

            movie1.StopPlay();
            movie2.StopPlay();
            movie3.StopPlay();
            movie4.StopPlay();
            movie5.StopPlay();
            movie6.StopPlay();
            movie7.StopPlay();
            movie8.StopPlay();
            movie9.StopPlay();
            movie10.StopPlay();
            movie11.StopPlay();
        }
    }
}
function PlayMovie(myMovie) {
    var sPath = window.location.pathname;
    var sPage = sPath.substring(sPath.lastIndexOf('/') + 1);
    if (sPage == "Default.aspx") {
        StopAllMovies()
        var movie = window.document[myMovie];
        movie.Play();
    }
}

function StopMovie(mMovie) {
    var sPath = window.location.pathname;
    var sPage = sPath.substring(sPath.lastIndexOf('/') + 1);
    if (sPage == "Default.aspx") {
        var movie = window.document[mMovie];
        movie.StopPlay();
    }
}
