in themes/kube/static/js/kube.js [230:245]
Kube.Animation = function(element, effect, callback)
{
this.namespace = 'animation';
this.defaults = {};
// Parent Constructor
Kube.apply(this, arguments);
// Initialization
this.effect = effect;
this.completeCallback = (typeof callback === 'undefined') ? false : callback;
this.prefixes = ['', '-moz-', '-o-animation-', '-webkit-'];
this.queue = [];
this.start();
};