// JavaScript Document

jQuery(document).ready(function(){
$("#accord .collapse").hide();
	$("#accord .head").click(function() {
		$(this).next().toggle("slow");
	}).next().hide();
});
