jQuery(document).ready(function(){
	$(".accordionhead").click(function() {
		$(this).next().toggle("fast");
		return false;
	}).next().hide();
});