// Autoreveal function. This is built from an accordion script. I just removed
// the "on" state and stopped it from closing others. Easy enough...
jQuery.fn.autoreveal = function(options) {
    // options
    var SLIDE_DOWN_SPEED = 'fast';
    var SLIDE_UP_SPEED = 'fast';
    var startClosed = options && options.start && options.start == 'closed';
    return this.each(function() {
        jQuery(this).addClass('autoreveal'); // use to activate styling
        jQuery(this).find('dd').hide();
        jQuery(this).find('dt').click(function() {
            var current = jQuery(this.parentNode).find('dd:visible');
            var next = jQuery(this).find('+dd');
            if (next.is(':visible')) {
                next.slideUp(SLIDE_UP_SPEED);
            } else {
                next.slideDown(SLIDE_DOWN_SPEED);
            }
        });
        if (!startClosed) {
            jQuery(this).find('dd:eq(' + + ')').slideDown(SLIDE_DOWN_SPEED);
        }
    });
};

$(function() {
	$("#intro_info dt").each(function(){
		$(this).click(function() {
			$(this).toggleClass("expanded");
		});
	});
});

// Let's set the stage:
$(document).ready(function() {
	$('#intro_info').autoreveal();
});