﻿var sliders;
var activeToggleIcon = '/images/icons/smallBurgundyDownArrow.gif';
var inactiveToggleIcon = '/images/icons/smallBurgundyArrow.gif';

window.addEvent('load', function() {
    sliders = new Fx.Accordion(
        'div.classHeader', 'div.classInfo', {
            opacity: false,
            alwaysHide: true,
            onActive: function(toggler, element) {
                toggler.setStyle('background-image', 'url(\'' + activeToggleIcon + '\')');
                toggler.setStyle('border-bottom', '0px dotted #666666');
                element.setStyle('border-bottom', '1px dotted #666666');

            },
            onBackground: function(toggler, element) {
                toggler.setStyle('background-image', 'url(\'' + inactiveToggleIcon + '\')');
                toggler.setStyle('border-bottom', '1px dotted #666666');
                element.setStyle('border-bottom', '0px dotted #666666');

            } 
        }
    );
});