jQuery(document).ready(function() {
  jQuery(".expand-head").click(function()
  {
    jQuery(this).next(".expand-content").slideToggle(100);
		if (jQuery(this).text() == '=========================== less info ===========================')
		{
			jQuery(this).text('=========================== more info ===========================');
		}
		else
		{
			jQuery(this).text('=========================== less info ===========================');
		}
		return false;
  });
});

