$(document).ready(function(){
	$("div.head").click(function(){
		id= $(this).attr('param_id');
		$("#"+id).toggle();
		return false;
	});
})