$(document).ready(storysofar);

function storysofar(){
 


	$(".history_prev a").click(function(){
    $(this).parent().parent().hide();
	$(this).parent().parent().prev().show();
	return false;
  });
	
	$(".history_next a").click(function(){
    $(this).parent().parent().hide();
	$(this).parent().parent().next().show();
	return false;
  });
  
}
