dojo.require("dojox.highlight");
dojo.require("dojox.highlight.languages._all");
dojo.require("dojox.highlight.languages.pygments._www");
dojo.addOnLoad(function(){
    dojo.query("code").forEach(dojox.highlight.init);
});
function switchStyle(e){
    var _p = 'http://ajax.googleapis.com/ajax/libs/dojo/1.2/dojox/highlight/resources/pygments/';
    document.getElementById('syntaxSheet').href = _p + e.innerHTML + '.css';
}
