chrome または firefox では正常に動作しますが、ie8 では動作しません。
a(".contextual-help-tabs").delegate("a","click focus",function(d){
var c=a(this),b;
d.preventDefault();
if(c.is(".active a")){
return false
}
a(".contextual-help-tabs .active").removeClass("active");
c.parent("li").addClass("active");
b=a(c.attr("href"));
a(".help-tab-content").not(b).removeClass("active").hide();
b.addClass("active").show()
});