hljs.initHighlightingOnLoad();

$(document).ready(function() {
	$("a[rel='lightbox']").colorbox();
	$("#content a[href^=http://]").click(function (e) {
		e.preventDefault();
		
		var url = this.href,
		    name = this.className || 'external';
			
		var win = window.open(url, name);
		if (window.focus) win.focus();
	})
});
