$(document).ready(function() {
	$('.section .section_head').click(function() {
		if ($(this).next('.section_box').is(':hidden')) { $(this).next('.section_box').slideDown('normal'); $(this).children('span').addClass('up'); }
		else { $(this).next('.section_box').slideUp('normal'); $(this).children('span').removeClass('up'); };
		return false;
	});
});