Instead of using return false try using preventDefault() like this;
- $(".SummaryPanelTrigger").click(function (event) {
- event.preventDefault();
$(".SummaryPanel").toggle(400);
$(this).toggleClass("active");
});
I'm not sure if that is what is hanging you up in IE9 though, the code looks OK for all browsers.