$('#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() {
                $('#helpBarFrame').animate({width: 170}, "fast");                                        
        });        
});