/**
 * @author Raphael Lus
 */

/*
 * Require:
 *     /contents/scripts/swfobject/swfobject.js
 *     /contents/scripts/swfobject/mootools.js
 *     /contents/scripts/swfobject/settings.js
 */ 

var Index = {
    
    flashContent:null,
    
    initialize: function()
    {
        swfobject.addDomLoadEvent(this.render.bind(this));
    },
    
    render: function()
    {
        swfobject.embedSWF(Settings.FLASH_FILE, "flashcontent", "100%", "100%", Settings.PLAYER_VERSION, 
            "/contents/scripts/swfobject/expressinstall.swf",
            false, 
            {menu:Settings.FLASH_MENU, scale:Settings.FLASH_SCALE, bgcolor:Settings.FLASH_BG_COLOR},
            {id:"flashcontent", name:"flashcontent"}
        );
    }
}

Index.initialize();

