$(document).ready(function() {  $('#accordion-container > li >  a').bind('click',function()  {    var $next = $(this).next();    if ($next.is(':visible')) return false;    $(this).parent().parent().find('li > ul:visible').slideUp('normal');    $next.slideDown('normal'); return false;  });});
