SyntaxHighlighter.brushes.Algorithmatic = function()
{
	var keywords =	'break case continue ' +
					'default do else false  ' +
					'for function if ' +
					'new null return switch ' +
					'this true try var while with'
					;

	this.regexList = [
		{ regex: SyntaxHighlighter.regexLib.singleLineCComments,	css: 'comments' },			// one line comments
		{ regex: SyntaxHighlighter.regexLib.multiLineCComments,		css: 'comments' },			// multiline comments
		{ regex: SyntaxHighlighter.regexLib.doubleQuotedString,		css: 'string' },			// double quoted strings
		{ regex: new RegExp(this.getKeywords(keywords), 'gm'),		css: 'keyword' }			// keywords
		];
	
	this.forHtmlScript(SyntaxHighlighter.regexLib.scriptScriptTags);
};

SyntaxHighlighter.brushes.Algorithmatic.prototype = new SyntaxHighlighter.Highlighter();
SyntaxHighlighter.brushes.Algorithmatic.aliases = ['algorithmatic'];
