
function initializePlayer()
{
	var userData = new UserData();
	var init = new InitObject("../admin/wp-content/themes/default/InterpreterContent.xml","../admin/wp-content/themes/default/TemplateLibrary.xml",userData);
	return init;
}

function InitObject(_contentPath,_templatePath,_userData)
{
	this.contentPath = _contentPath;
	this.templatePath = _templatePath;
	this.userData = _userData;
}
function UserData()
{

}
