$(document).ready(function(){
	$('#right-bar').load('right-bar-content.php', '', function(response, status, xhr) {
		if (status == 'error') {
			var msg = "Sorry but there was an error: ";
			$(".content").html(msg + xhr.status + " " + xhr.statusText);
		}
	});
});
