
function RenDebugConsole(){

	this.initialize();
}

RenDebugConsole.prototype={
	
	initialize: function(){
		
		this.name_space='ren-';
		
	},

	show: function(item){
		
		var obj=$.id(this.name_space+item,'animation');

		if(!obj.shown || typeof obj.shown=='undefined')
			{
			obj.fade.start([1,0],0.3,{display: true});
			obj.shown=true;
			}
		else
			{
			obj.fade.start([0,1],0.1,{display: true});
			obj.shown=false;
			}

	}
	
	
}
