var _effects = {};
/*
_effects.constructor = function(params) {
	this.params = params;
};
*/
_effects.killMeSoftly = function(el) {
	return new Fx.Style ( el, 'opacity', {
		duration : 500,
		onComplete : function(el){
			el.remove();
		}
		} ).start ( 0 );
}

dojo.provide( 'takkle.view.effects' );
dojo.declare( 'takkle.view.effects', null,_effects);
