$(function(){
    $('#Sheriffen')
        .children()
        .not('h3')
        .hide();
 
    $('#Sheriffen h3')
        .click(function(){
            $('#Sheriffen').children().not('h3')
                .slideToggle();
        })
    .css({
			cursor: 'pointer',
			//textDecoration: 'underline',
			color: '#3d3838'
        });
});

$(function(){
    $('#borgerskab')
        .children()
        .not('h3')
        .hide();
 
    $('#borgerskab h3')
        .click(function(){
            $('#borgerskab').children().not('h3')
                .slideToggle();
        })
    .css({
			cursor: 'pointer',
			//textDecoration: 'underline',
			color: '#3d3838'
        });
});

$(function(){
    $('#Traekprocent')
        .children()
        .not('h3')
        .hide();
 
    $('#Traekprocent h3')
        .click(function(){
            $('#Traekprocent').children().not('h3')
                .slideToggle();
        })
    .css({
			cursor: 'pointer',
			//textDecoration: 'underline',
			color: '#3d3838'
        });
});