// JavaScript Document
$(function(){
	$('.sectionContent').css("display","none");
		  	
	$('h3.section').click(function() {
			$(this).next('.sectionContent').slideToggle('fast').siblings('.sectionContent').slideUp('fast');
			$(this).css({"color":"#ffffff","background-color":"#000000"}).siblings('h3.section').css({"color":"#000000","background-color":"#cccccc"});
	});
		   
});
