﻿$(document).ready(function() {
    $('.service-network-status-state').toggle(
        function() {
            $(this).next().show();
            $(this).addClass('open');
        },
        function() {
            $(this).next().hide();
            $(this).removeClass('open');
        }
    );
    $('.service-network-status-state').each(
        function() {
            $(this).next().hide();
        }
    );
});
