window.onload = function () {
	var doc = document;
	var ps = doc.getElementsByTagName('pre');
	var len = ps.length;
	var isIE = ( navigator.appName.indexOf("Microsoft") != -1 );
	var cn = (isIE) ? 'className' : 'class';
	for(var i=0;i<len;i++){
		ps[i].setAttribute( 'name' , 'code' , 1 );
		ps[i].setAttribute( cn , 'actionscript' , 1 );
	}
    dp.SyntaxHighlighter.ClipboardSwf = 'js/syntaxhighlighter/clipboard.swf';
    dp.SyntaxHighlighter.HighlightAll('code');
}
