$(document).ready(function() {  
  //Anything can happen...
  $('a[rel="external"]').click(function() {
    window.open($(this).attr('href'));
    return false;
  });
  
  $('a.submenu').click(function() {
    return false;
  });
	
	$('.patient-ed-summary div.topic-content:not(:first)').hide();
	
	$('.patient-ed-summary h2').click(function() {
		var clickedHeader = this;
		$('.topic-content:visible').slideUp(function() {
			$(clickedHeader).parent().children('.topic-content').slideDown();
		});
		return false;
	});
    
});
