$(document).ready(function(){
	// hide the all of the element with class coll_body
	$(".coll_body").hide();
	// toggle the componenet with class coll_body
	$(".coll_head").click(function(){
		$(this).next(".coll_body").slideToggle(600);
	});
});

