function Contents() {

	this.content	= null;
	this.control	= null;
	
	this.realContent	= null;

	this.contentId	= 'contents';

	this.fadeIn	= function() {

		this.content.fadeIn(800);
		this.control.fadeIn(800);

	};

	this.fadeOut	= function() {

		this.content.fadeOut(200);
		this.control.fadeOut(200);

	};

	this.load	= function(id) {

		id	= id.substr(6) ;
		
		this.realContent.html( $('#content_' + id).html() );
		
		var selfObj	= this;
		setTimeout( function() { selfObj.fadeIn(); }, 400);

	}
	
	this.init	= function() {

		this.content	= $('#' + this.contentId);
		this.control	= $('#' + this.contentId + 'Control');
		
		this.realContent	= $('#contentsCol_r');
		

	};

	this.init();

}
