$(function() {
	$("a.notes-link").each(function() {
		$(this).click(function(e) {
			var $this = $(this);
			var thisId = $this.attr("rel");
			reEqualizeHeights(function() {
				$("#notes-" + thisId).toggle();
			});
			if ($this.html() == 'Read the notes' ) {
				$this.html('Hide the notes');
			} else {
				$this.html('Read the notes');
			}
			e.preventDefault();
		});
	});
});