var DubTinyMCE =
{
	initSyntaxhighlighter: function(path) {
		SyntaxHighlighter.autoloader(
			'actionscript3		' + path + '/scripts/shBrushAS3.js',
			'bash				' + path + '/scripts/shBrushBash.js',
			'coldfusion			' + path + '/scripts/shBrushColdFusion.js',
			'csharp				' + path + '/scripts/shBrushCSharp.js',
			'cpp				' + path + '/scripts/shBrushCpp.js',
			'css				' + path + '/scripts/shBrushCss.js',
			'delphi				' + path + '/scripts/shBrushDelphi.js',
			'java				' + path + '/scripts/shBrushJava.js',
			'javascript			' + path + '/scripts/shBrushJScript.js',
			'perl				' + path + '/scripts/shBrushPerl.js',
			'php				' + path + '/scripts/shBrushPhp.js',
			'plain				' + path + '/scripts/shBrushPlain.js',
			'python				' + path + '/scripts/shBrushPython.js',
			'ruby				' + path + '/scripts/shBrushRuby.js',
			'sql				' + path + '/scripts/shBrushSql.js',
			'vb					' + path + '/scripts/shBrushVb.js',
			'xml				' + path + '/scripts/shBrushXml.js'
		);
		SyntaxHighlighter.all();
	}
}

