$(document).ready(function(){
    initFrame();
});

initFrame = function() {

    var $frame = $('<iframe width="100%" height="100%" border="0">');
    
    $('body').html( $frame );
    $('<div class="player"><div id="player"></div></div>').insertAfter($frame);

    swfobject.embedSWF('/swf/MiniPlayer.swf', 'player', '25', '20', '9.0.0', 'expressInstall.swf', false, {wmode:'transparent'}, false);

    setTimeout( function() {
        $frame.attr("src",'index_orig.html');
    }, 1 );
}

