// SQUIRREL arcade game
$(document).ready(function() {

    // Page must be re-rendered upon login
    xeko.events.notify("renderSwf", "login");

    // Users must be logged in before they can submit a code; otherwise one-time codes might be lost to guest accounts
    if (xeko.forceLogin(xeko.messaging.alert.CODECRACKER_LOGIN_REQUIRED)) {
        renderSwf();
    }

});

function renderSwf() {
    var flashvars = {};
    var params = {};
    params.wmode = "transparent";
    params.quality = "high";
    params.allowfullscreen = "true";
    params.allowScriptAccess = "always";
    var attributes = {};
    swfobject.embedSWF("/interface/swf/games/squirrel/loader.swf", "gameflash", "900", "510", "9.0.0", "/interface/swf/swfobject/expressInstall.swf", flashvars, params, attributes);
}