function initAccordion() {
  $('.accordion .expanded').hide();
//  $('.accordion div p:first').show();
  $('.accordion .trigger').click(
	function() {
	  var checkElement = $(this).next();
	  if((checkElement.is('.expanded')) && (checkElement.is(':visible'))) {
		checkElement.slideUp('normal');
		return false;
		}
	  if((checkElement.is('.expanded')) && (!checkElement.is(':visible'))) {
		//$('.accordion div p:visible').slideUp('normal');
		checkElement.slideDown('normal');
		return false;
		}
	  }
	);
  }
$(document).ready(function() {initAccordion();});

