$(document).ready(function() {
    $('.switcher-body > li:not(:first-child)').hide();
    $('.switcher-header > li').css({'cursor':'pointer'});
    $('.switcher-header > li').click(function() {
        $('#' + this.parentNode.id + '-body > li').hide();
        $('#' + this.parentNode.id + ' > li.selected').removeClass('selected');
        $('#' + this.id ).addClass('selected');
        $('#' + this.id + '-menu').show();
    });
});


