﻿// JScript File
var fxCache = 
{
    cache:{},
    options:{duration:500,transition:Fx.Transitions.Circ.easeInOut},
    getFor: function (element,options)
    {
        element = $(element);
        if (this.cache[element.id] == null)
        {
            return this.cache[element.id]=element.effects($merge.apply(null, [this.options].extend(options||{})));
        }
        else
        {
            return this.cache[element.id];
        }
    }
}
