jQuery(document).ready(function() {
	jQuery('.supporter-details').hide();
    jQuery('.supporter h2').toggle(function() {
        jQuery(this).next().show('slow');
      },function() {
        jQuery(this).next().hide('slow');
      }
	);
	jQuery('input[placeholder], textarea[placeholder]').placeholder();
});
