$(function(){
    $("#commentsTab").toggle(function(){ $("#comments").slideUp();
                                         $("#commentsTab").text("show comments")
                                        }, 
                             function(){ $("#comments").slideDown();
                                         $("#commentsTab").text("hide comments")
                                        })
    $(".sideBoxHeader").toggle(function(){
                                $(this).next().slideUp();
                                var img = $(this).find("img");
                                img.attr('src', img.attr('src').replace("open","close") );
                                        },
                            function(){
                                $(this).next().slideDown();
                                var img = $(this).find("img");
                                img.attr('src',img.attr('src').replace("close","open") );
                                        })
})
