function equalHeight(group) {
    tallest = 0;
    group.each(function() {
        thisHeight = $(this).height();
        if(thisHeight > tallest) {
            tallest = thisHeight;
        }
    });
    group.height(tallest);
}


$(document).ready(function() {
    equalHeight($(".eh"));
    
    var sbBox = $('.sidebar-box-content');
    
    sbBox.hide();
    
    // $('#sidebarContent li.first .sidebar-box-content').show();
    
    $('#sidebarContent li#oppettider-wrapper .sidebar-box-content').show();
    
  	$('#sidebarContent h3 a').click(function(e){
  		e.preventDefault();
  		$(this).closest('li').find('.sidebar-box-content').slideToggle();
  	});
    

});
