function initCollapsables(){$(".collapsable").each(function(){if($(this).hasClass("closed")){$(this).children("div").hide();}});$(".collapsable a.title").click(function(){$parent=$(this).parent();$collapsable=$parent.children("div");if($collapsable.is(":visible")){$collapsable.animate({height:"hide",opacity:"hide"},500,"swing");}else{closeAll();$collapsable.animate({height:"show",opacity:"show"},500,"swing");}return false;});}function closeAll(){$(".collapsable").each(function(){$closeColl=$(this).children("div");if($closeColl.is(":visible")){$closeColl.animate({height:"hide",opacity:"hide"},500,"swing");}});}
