/*=======================================================================================*/
// doOnLoad() : runs page-load functions and creates event pointers as described below.

function doOnLoad() {
  get_title();
}

//====================================================================================
// get_title() 
// Captures the text from the content of the H1 tag.
//====================================================================================  
  
   function get_title() {
	var sTitle = contentAreaTopTD.getAdjacentText("beforeEnd");
     document.title = "Lead Workshop - " + sTitle;
   }