

function showSecHide(id) {

var numSecinfo = 5 // This value may change depending on how many featured recipes are on this page, increase/decrease accordingly as recipes are added or subtracted
// function for featured recipe section
  // 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<=numSecinfo;i++) {

	document.getElementById("pagetitle" + i).style.display = 'none';

  }
	document.getElementById("pagetitle" + id).style.display = '';

}


function returnTitle(id) {
var numSecinfo = 5 // This value may change depending on how many featured recipes are on this page, increase/decrease accordingly as recipes are added or subtracted
// function for featured recipe section
  // 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<=numSecinfo;i++) {

	document.getElementById("pagetitle" + i).style.display = 'none';

  }
	document.getElementById("pagetitle" + id).style.display = '';


}


function showPreHide () {
var numProdinfo = 5 // This value may change depending on how many featured recipes are on this page, increase/decrease accordingly as recipes are added or subtracted
// function for featured recipe section
  for (i=1;i<=numProdinfo;i++) {

	document.getElementById("prodlarge" + i).style.display = 'none';
	document.getElementById("prodinfo" + i).style.display = 'none';
  }

}

function timedMsg()
{
	var t=setTimeout("showPreHide()",50)
}
