////////////////////////////
// http://adipalaz.awardspace.com/experiments/jquery/accordion2.html
///////////////////////////
(function(jQuery) {
//http://www.mail-archive.com/jquery-en@googlegroups.com/msg43851.html
jQuery.fn.orphans = function(){
    var txt = [];
    this.each(function(){jQuery.each(this.childNodes, function() {
        if (this.nodeType == 3 && jQuery.trim(this.nodeValue)) txt.push(this)
    })}); 
    return jQuery(txt);
};
})(jQuery);
////////////////////////////
jQuery(function() {
    jQuery('div.acc .expand').orphans().wrap('<a href="#expand/collapse" title="expand/collapse"></a>');
    jQuery('div.acc:eq(0) ul').find('ul.collapse').hide();
    jQuery('div.acc:eq(0) .expand').click(function() {
        jQuery(this).toggleClass('open').siblings().removeClass('open').end()
        .find('ul').slideToggle().end()
        .siblings('li').find('ul:visible').slideToggle();
    });
  
});