function soundManagerLoad() {
    var player = window.parent['player'];
    soundManager = player.soundManager;
    playStream = player.playStream;
    stopStream = player.stopStream;
    changeSong = player.changeSong;
}
function initPage() {
    var hash = window.location.hash;
    if(hash != "#loadingPlayer") {


    }
}
function checkHash() {
    var hash = window.location.hash;
    if(hash == "" && window.parent.location.pathname != currentPage) {
        window.parent.location.hash = currentPage;
    }
}
checkHash();
