/***************************************************************************
* Initializes an array to hold strings describing each services sub-section.
****************************************************************************/
var strContent = new Array();

/********************
* Populate the array.
*********************/		
strContent[0] = "Select a category from the right to find out more about Sewer-Matic's trenchless rehabilitation solutions.&nbsp;&nbsp;<img src='../../../images/doubleArrow.gif' width='18' height='9' border='0' alt='Arrow'>"
strContent[1] = "Sewer-Matic's Cure-In-Place Pipe (CIPP) lining system for manhole to manhole, spot or lateral pipe rehabilitation."
strContent[2] = "Formadrain liner can be used to rehabilitate any type of underground conduit. Formadrain is a fast, economical and durable trenchless technology suitable for rehabilitating all kinds of conduits, underground or process piping."
strContent[3] = "3M Chemical Grout is designed to help solve a wide variety of water control and water shut-off problems by forming a water impermeable barrier."
strContent[4] = "Danby Lining System is a spiral-wound PVC liner that is grouted in place, providing a structural repair in pipes ranging in size from 900mm to 3000mm."

/***************************************************************************************
* Changes the description to the one for the category that the mouse is currenltly over.
* This function does not work in Netscape.
****************************************************************************************/
function changeContent(id) {

	var blnIsIE = (document.all)? true : false;
	var blnIsNS = (document.layers)? true : false;
	
	if (blnIsIE) {
		document.all['content'].innerHTML = strContent[id]
	}
}

