{literal}
<script>
$(function() {
$(".top_ul li.selected").parent("ul").show();
$(".top_ul > li").each(function() {
$(this).addClass("top_li");
if ($(this).hasClass("selected"))
{
$(this).next("ul").show();
}
});
$(".top_ul li a").click(function(){
if ($(this).parent().find('ul').length) {
$(this).parent().siblings().find("a.selected:visible").removeClass("selected");
$(this).closest('li').children("ul").slideToggle("slow");
$(this).parent().siblings().find("ul:visible").slideUp("slow");
$(this).toggleClass("selected");
return false;
}
});
});
</script>
{/literal}