/**
 * @author Raphael Lus
 */

/*
 * Uses:
 *     /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("/Index.swf", "flashcontent", "100%", "100%", Settings.PLAYER_VERSION, 
            "/contents/scripts/swfobject/expressinstall.swf",
            false, 
            {menu:"false", scale:"noscale", bgcolor:"#013668"},
            {id:"flashcontent", name:"flashcontent"}
        );
        
        if(swfobject.getFlashPlayerVersion().major == 0)
        {
            window.location = "/";
        }
    }
}

Index.initialize();
