$(document).ready(function(){
	$('.story>p, .story>h4').hide();					   
	$('.pullquote-vis').removeClass('pullquote-pos');
	$('<input type="button" class="revealer" value="Show more"/>')
		.appendTo('.pullquote-vis');

  $('.revealer').click(function(){
	/* hide visible p, h4 and reveal hidden buttons */
	$('.story>p:visible, .story>h4:visible').hide();					   
	$('.revealer:hidden').show();					   
	$('div.pullquote-pos').removeClass('pullquote-pos');					   
	/* reveal this story and hide button */							
//    $(this).parent().css('background-color','#cfc');
    $(this).parent().addClass('pullquote-pos');
	$(this).parents('.story').children('p, h4').fadeIn();
    $(this).hide();
//	$(this).parents('.story').children('p, h4').css('background-color','#cfc');
  });
  
});
