// JavaScript Document
$(document).ready(function() {
	$('.head').click(function() {
		$(this).next().toggle('slow');
		return false;
	}).next().hide();
});

