
function nestedAccordion() {  
  jQuery("#myaccordion h4").click(function() {
		jQuery(this).next(".accContent").toggle();
	}).next().hide();
	jQuery("#myaccordion .accContent h5").click(function() {
		jQuery(this).next(".accMoreContent").toggle();
	}).next().hide();
}
  jQuery(document).ready(function() {
	  jQuery(".accContent").css("display","none");
	  jQuery("#myaccordion h4").css("cursor","pointer");
	  jQuery("#myaccordion .accContent h5").css("cursor","pointer");
	nestedAccordion();
  });
