		$(document).ready(function() {
			/* apply classnames and show/hide the Program notes */
			$('.expandable div.fullversion').hide();
			$('.expandable h4 a.fullversion,.expandable a.show').click(function(){
				$('.expandable div.fullversion').show();
				$('.expandable div.summary').hide();
				$('.expandable a.show').hide();
				$('.expandable h4 a').removeClass('active');
				$('.expandable h4 a.fullversion').addClass('active');
				return false;
			});
			$('.expandable h4 a.summary,.expandable a.hide').click(function(){
				$('.expandable div.fullversion').hide();
				$('.expandable div.summary').show();
				$('.expandable a.show').show();
				$('.expandable h4 a').removeClass('active');
				$(this).addClass('active');
				return false;
			});
		});