$(function(){
    var body_class = $('body').attr('class');
    $('#gNavi ul').hide();
    $('#gNavi').find('.' + body_class).each(function() {
        $(this).addClass("here");
        // top level folder
        if (this.tagName == 'P' || this.tagName == 'p') {
            $(this).next().show();
        } else {
            $(this).parent('ul').show();
            $(this).children('ul').show();
        }
    });
});

/* Start form serch */








