$(document).ready(function(){
  // hide all blocks that have class hide
	$('.hide').hide();
	
	
	//Interim Committee Summary
	$('#hrefSummary').toggle(function(){
	  $(this).parent().next().slideDown('slow').removeClass('hide').preventDefault;
		$(this).html('Close Summary&nbsp;<img src="/Site/image/graphic/contract.png" border="0">');
	  },function(){
		$(this).parent().next().slideUp('slow').addClass('hide').preventDefault;
		$(this).html('Summary&nbsp;&nbsp;<img src="/Site/image/graphic/expand.png" border="0">');
	})
 });


