/**
* @author diego.pereira
* August 29th, 2008
* Common Libray 2
*/

Ext.namespace('Ext.ux.clv2');

var spot = new Ext.Spotlight({
	easing: 'easeOut',
	duration: .3
});

var updateSpot = function(id){
	if(typeof id == 'string'){
		spot.show(id);
	}else if (!id && spot.active){
		spot.hide();
	}
};