$(document).ready(function() {

    //ACCORDION BUTTON ACTION
    $('.aBtn').click(function() {
        if (jQuery(this).is('.aBtnSel')) {
            jQuery('.aMiddle').animate({ height: '0' }, 250).hide('fast');
            jQuery(this).removeClass('aBtnSel');
        } else {
        jQuery('.aMiddle').animate({ height: '0' }, 250).hide('fast');
        jQuery(this).next().animate({ height: '300' }, 250).show('fast');
        jQuery('.aBtnSel').removeClass('aBtnSel');
        jQuery(this).addClass('aBtnSel');
        }
    });

    //HIDE THE DIVS ON PAGE LOAD
    $ektron('.aMiddle').css({ height: '0' });
});