Join us at GSX, where you can help elevate your security management and create a more resilient global society. Stop by the Alertus booth (#1119) to see industry-leading solutions and experience them with interactive demos and hands-on displays!
/* Script to enforce expanding text sections. MUST be loaded after jquery (see above) */
$(document).ready(function(){
$('.markdown-block .sqs-block-content h2').css('cursor','pointer');
$(".markdown-block .sqs-block-content h2").nextUntil("h2").slideToggle();
$(".markdown-block .sqs-block-content h2").click(function() {$(this).nextUntil("h2").slideToggle();});
});