dp.sh.Brushes.Scriptfu = function()
{
	var keywords = 'if car set'; // not full list

	this.regexList = [
		{ regex: new RegExp(';.*$', 'gm'), css: 'comment' }, // one line comments
		{ regex: dp.sh.RegexLib.DoubleQuotedString, css: 'string' },				// double quoted strings
		{ regex: dp.sh.RegexLib.SingleQuotedString, css: 'string' },				// single quoted strings
		{ regex: new RegExp(this.GetKeywords(keywords), 'gmi'), css: 'keyword' }, // keyword
		{ regex: new RegExp('[a-z]+-[a-z-]*', 'gmi'), css: 'vars_funcs' } // fuction
		];

	this.CssClass = 'dp-scriptfu';
}

dp.sh.Brushes.Scriptfu.prototype = new dp.sh.Highlighter();
dp.sh.Brushes.Scriptfu.Aliases = ['scriptfu'];

