$('#helpBarFrame .content div h4').click(function() {
    $(this).next().toggle(function() {
        if (this.style.display != 'none') {
            $('#helpBarFrame .content div p').not(this).slideUp();
        }
    });
});

$('#helpBarFrame .content .hiddenHelp').click(function() {
    $('#helpBarFrame').animate({ width: 0 }, "fast", function() {
        $('#helpBarSliver').animate({ width: 22 }, "slow");
    });
});

$('#helpBarSliver').click(function() {
    $('#helpBarSliver').animate({ width: 0 }, "slow", function() {
        if (XIXI.$.browser.msie && /6.0/.test(navigator.userAgent)) {
            $('#helpBarFrame').bgIframe({
                width: 170
            }).animate({ width: 170 }, "fast");
        }
        else { $('#helpBarFrame').animate({ width: 170 }, "fast"); }

    });
});
