    $(document).ready(function() {
	   $("a.expandable-toggle").each(function() {
           $(this).parent().next().hide();
         });
	
       $("a.expandable-toggle").click(function() {
         hideAll();
         $(this).parent().next().slideToggle();
         return false;
       });
	
       function hideAll(){
         $("a.expandable-toggle").each(function() {
           if($(this).hasClass("open")){
             click(function() {
               $(this).parent().next().slideDown();
             });
           };
           //$(this).parent().next().slideUp();
         });
       };
    });