The question is not clear. But if you need to REFRESH the page AFTER the slideToggle you can do:
$('#adminMenu h3').click(function() {
$(this).next('ul').slideToggle("slow",function(){window.location.reload()});
return false;
});
Don't know if this helps!
Nicolo' Verrini
2010-07-04 12:59:48