function postProcess() {
	var nl, i;

	nl = document.getElementsByTagName('pre');
	for (i = 0; i < nl.length; i++) {
		if (/\b(php|js|xml)\b/.test(nl[i].className))
			nl[i].setAttribute('name', 'code');
	}

	dp.SyntaxHighlighter.ClipboardSwf = '/wp-content/themes/indigo/js/syntax/clipboard.swf';
	dp.SyntaxHighlighter.HighlightAll("code");
};

