Studio.Effect.Shadow = function(){};

Studio.Effect.Shadow.prototype = 
{
    iSize  : 0,
    iAngle : 0,
    
    getUrlAttach : function()
    {
        var sUrl = '';
        sUrl += 'effect_shadow/1/';
        sUrl += 'shadow_size/'  + this.iSize  + '/';
        sUrl += 'shadow_angle/' + this.iAngle + '/';
        return sUrl;
    }
};