$(document).ready(function() {
	if ($("[id^='ehl_title-']")[0]) {
		$("[id^='ehl_title-']").each(function() {
			var comps = this.id.split("-");
			var eid = comps[1];

			$(this).css("cursor", "pointer");

			$("#ehl_descr_box-"+eid).css("display", "none");
			$("#ehl_date-"+eid).css("display", "none");

			$("#ehl_title-"+eid).click(function() {
				var d = ($("#ehl_descr_box-"+eid)[0].style.display == "")?"none":"";
				$("#ehl_descr_box-"+eid).css("display", d);
				$("#ehl_date-"+eid).css("display", d);
			});
		});
	}
});
