$(document).ready( function() {
    $('div.subcat').hide();

    if( !$('body').attr('class') ) {
        return;
    }

    var o = new Array();
    o.item = '.' + $('body').attr("class");
    o.menu = o.item.replace(/[0-9]+$/, '');

    var i = 'item';

    $('body ' + o[i] + ', ' + o[i] + '_sub').show();
    $('body ' + o[i] + ', ' + o[i] + '_sub .sb_subline').show();
    $('body ' + o[i]).addClass('active-' + i);
    $('body ' + o[i] + ' ' + '.sb_separator').hide();
    var c = $('body ' + o[i])[0];
    $( $(c).prevAll('.sb_item')[0] ).children('.sb_separator').hide();

    var i = 'menu';

    $('body ' + o[i] + ', ' + o[i] + '_sub').show();
    $('body ' + o[i] + ', ' + o[i] + '_sub .sb_subline').show();
    $('body ' + o[i]).addClass('active-' + i);
    $('body ' + o[i] + ' ' + '.sb_separator').hide();
    var c = $('body ' + o[i])[0];
    $( $(c).prevAll('.sb_item')[0] ).children('.sb_separator').hide();

});

