// Executes after everything else on page is loaded
$(window).bind('load', function() {
	activateCodeFormatting();
});

function activateCodeFormatting() {
	$.beautyOfCode.init({
		brushes: ['Xml', 'JScript', 'CSharp', 'Plain', 'Php', 'Ruby', 'Bash'],
		theme: "DevelopingInTheDark",
		baseUrl: 'http://developinginthedark.com/js/syntaxhighlighter/'
	});
}
