var UnicMegaToolbar = Class.create();

UnicMegaToolbar.prototype = {
		
	timeOutId: null,
	
	initialize: function(){
	
	},
	
	display: function(id){
		if(this.timeOutId != null){
			window.clearTimeout(this.timeOutId);
		}
		if(id != null && $(id) != null){
			$(id).show();
		}
	},
	
	hide: function(id){
		
		if(id != null && $(id) != null){
			if(this.timeOutId != null){
				window.clearTimeout(this.timeOutId);
			}
			//this.timeOutId = Element.hide.delay(1, id);
			$(id).hide();
		}
	}
}
