////////////////////////////
// http://adipalaz.com/experiments/jquery/accordion3.html
///////////////////////////
// useful link: http://www.learningjquery.com/2007/03/accordion-madness
$(function () {
    $('h4.expand');
    $('h4.expand').wrapInner('<a style="display:block;" title=""></a>');

    $('div.demo:eq(0)').find('h4.expand:eq(0)').addClass('open').end()
    .find('div.collapse:gt(0)').hide().end()
    .find('h4.expand').click(function () {

        $(this).addClass('open').siblings().removeClass('open').end()
        .next('div.collapse:hidden').slideToggle().siblings('div.collapse:visible').slideUp();

        if ($(this).addClass('open')) {
            $('h4.expand').wrapInner('<div><div>');
            return false;
         }

        return false;
    });

});
