function histPopulateSubsections() {
    list = '';
    
    count = 0;
    $('#contentFakultaet').children('h2').each(function() {
		if($(this).hasClass('notoc')) {
			return true;
		}
		
        count++;
        
        title = $(this).html();
        
        //anchor = count;
        anchor = title.toLowerCase().replace(/[\s]/g,'-').replace(/[^a-z\-]/g,'');
        
        list = list + '<li><a href="#' + anchor + '">' + title + '</a></li>';
        $(this).before('<a name="' + anchor + '"></a>');
    });
    
    if(list == '') {
        return false;
    }
    
    //list = '<h2>Pers&ouml;nliche Informationen</h2><ul class="linkliste">' + list + '</ul>';
    list = '<h2>Pers&ouml;nliche Informationen</h2><ul>' + list + '</ul>';
    //alert(list);
    
    $('#histSubsections').html(list);
    
    return true;
}
