window.onload = function() {
	setPgTitleFromH5();
}

function setPgTitleFromH5() {
/*	Adding H5 element to the title
	Called in window.onload	
*/
  if (document.getElementsByTagName("h5")[0] == null) {return true;}
  var title = document.getElementsByTagName("h5")[0].innerHTML;
  var regAmp = /&amp;/;
  title = title.replace(regAmp, '&');
  document.title = document.title + ", " + title;
}

