// JavaScript Document

$(function() {
$('div.collapsePanelHeader').toggle(
function() {
$(this).next('div.content').show('slow');
$(this).children('div:last').removeClass('expand').addClass('close');
},
function() {
$(this).next('div.content').hide('slow');
$(this).children('div:last').removeClass('close').addClass('expand');
});
}); 