(function() {
    var player = document.getElementById('player1');
    player.style.display = 'none';
    player.style.visibility = 'hidden';
    var splash = document.getElementById('compat_splash');
    splash.style.position = 'absolute';
    splash.style.top = '0';
    splash.style.left = '0';
}());

function swapInPlayer() {
    var splash = document.getElementById('compat_splash');
    var player = document.getElementById('player1');
    splash.style.display = 'none';
    player.style.display = 'block';
    player.style.visibility = 'visible';
}
