var xinha_plugins =
[
 'ImageManager'
];

var xinha_editors =
[
  'rte',
  'anotherOne'
];

function xinha_init()
{
  if(!Xinha.loadPlugins(xinha_plugins, xinha_init)) return;

  var xinha_config = new Xinha.Config();
  
  xinha_config.autofocus = "rte";
 
  xinha_config.pageStyle = "body {color: white; font-family: Verdana; font-size: 10pt; background-color:black; } p {margin-bottom:0px; margin-top:0px;}";

 
  xinha_editors = Xinha.makeEditors(xinha_editors, xinha_config, xinha_plugins);
 

  //xinha_editors.rte.config.pageStyleSheets = ['skin2.css'];

 
 Xinha.startEditors(xinha_editors);
}
Xinha.addOnloadHandler(xinha_init);
