

$(function () {
if (! $.browser.safari) {
$("#pagetop").click(function () {
$(this).blur();
$("html,body").animate({ scrollTop: 0 }, "slow");
return false;});
}
});

$(function(){ var slide = {height:"toggle", opacity:"toggle"};
$("#acm").each(function(){ 
$("li > a", this).each(function(index){ 
if(index > -1) $(this).next().hide(); 
$(this).click(function(){ 
$(this).next().animate(slide).parent().siblings()
.children("ul:visible").animate(slide); 
return false;}); 
}); 
}); 
}); 