	
	/*
		content JS
	*/
	
	Component.content = {
		
		init: function( args )
		{
			for(var i=args.length-1;i>=0;i--)
			{
				new Component.content.create( args[i] );	
			}
		},
		
		create: function( args )
		{
			var textObject = document.getElementById( args.id + "_text" );
			
			if( !textObject )
			{
				return false;
			}
			
			/*
			Application.util.xslt.disableOutputEscaping.correct({
														id: args.id + "_text"
													  });
			*/
		}
		
	};