// JavaScript Document

var numSteps = 6;

function showHide (id) {
  // var numArticles will change depending on how many articles are on a particular page.  Needs to be set in each page that will call this function.

  for (i=1;i<=numSteps;i++) {
	document.getElementById("step" + i).style.display = 'none';
  }
  
  document.getElementById("step" + id).style.display = '';
 
}
