		function initialize_menu(openSection) {
			$("#left-menu > ul > li > a").click(function(){
				$("#left-menu > ul > li > a").css('font-weight', 'normal');
				$(this).css('font-weight', 'bold');
				show = $(this).parent().find('ul').is(':hidden');
				
				$("#left-menu > ul > li ul").hide();
				if (show)
					$(this).parent().find("ul").show();
			});

			
			if (openSection != '') {
				$('.' + openSection).parent().parent().parent().find("> a").click();
				$('.' + openSection).parent().parent().parent().find("> a").css('font-weight', 'bold');
				$('.' + openSection).css('font-weight', 'bold');
			}

		}

