(function(){


    /**
    * Display imageControlPanel effect.
    */
    aura.provide('s100g.effect.imageControlPanel');

    var effect = aura.namespace('s100g.effect.imageControlPanel');

    effect.process = function(node)
    {
        var cp = new s100g.controlPanel(node);
        cp.start();
    };


    /**
    * Register us with the effects manager.
    */
    aura.effect.registerEffect(
        's100g.effect.imageControlPanel',
        effect.process
    );


})();
