$(document).ready(function () {
	/* As I cannot access codebehind at this point, we must use this dirrty trick to hide the menu, if empty */
	if ($('#sidebar ul li').length == 0) {
		$('#sidebar').hide();
	}
});
