CodeHighlighter.addStyle("javascript",{
	numbers : {
		exp  : /2|3|4|5|6|7|8|9|1|0/
	},
	comment : {
		exp  : /(\/\/[^\n]*\n)|(\/\*[^*]*\*+([^\/][^*]*\*+)*\/)/
	},
	brackets : {
		exp  : /\(|\)/
	},
	curlybrackets : {
		exp  : /\{|\}/
	},
	hashkey : {
		exp  : /([\w]*)\:/,
  	replacement : "<span class=\"hashkey\">$1</span>:"
	},
	klass : {
		exp  : /([\w]*)\(/,
  	replacement : "<span class=\"function\">$1</span>("
	},
	string : {
		exp  : /'[^']*'|"[^"]*"/
	},  
	keywords : {
		exp  : /\b(arguments|break|case|continue|default|delete|do|else|false|for|function|if|in|instanceof|new|null|return|switch|this|true|typeof|var|void|while|with)\b/
	},
	global : {
		exp  : /\b(toString|valueOf|window|element|prototype|constructor|document|escape|unescape|parseInt|parseFloat|setTimeout|clearTimeout|setInterval|clearInterval|NaN|isNaN|Infinity)\b/
	}	
});