/* Mathematica overview page javascript.

   @file        overview.js.en
   @author      marionm
   ========================================================================== */

$(document).ready(function() {
    $('#products .level-3').hide();
    $('#toggler').click(function() {
        if ($(this).val() === 'Show Products') {
            $(this).val('Hide Products');
            $('#products .level-3').show();
        } else {
            $(this).val('Show Products');
            $('#products .level-3').hide();
        }
    });
});