$(document).ready(function () { // when the DOM is ready do:
			$('A.reveal').click(function () {
				$('#calhid').slideDown('fast');
				return false; // don't follow the default link action
			});
		});