/***************************************************************************
* Initializes an array to hold strings describing each services sub-section.
****************************************************************************/
var strContent = new Array();

/********************
* Populate the array.
*********************/		
strContent[0] = "Sewer-Matic Services is a full solution provider for any sewer, plumbing, or environmental problem."
strContent[1] = "From the minor repair of a leaky faucet to the installation of a complete plumbing system, our licensed fitters and plumbers are trained to get the job done. Offering residential, commercial and industrial service, Sewer-Matic is your best choice for any size plumbing project."
strContent[2] = "Sewer-Matic Inspection and Rehabilitation Services department uses the most up-to-date closed circuit television inspection equipment to meet specific customer needs."
strContent[3] = "Trenchless, or \"No-Dig\" technology offers a cost-effective alternative to the conventional methods of excavating and replacing sewers."
strContent[4] = "Sewer-Matic offers a broad range of environmental services which cover removal, transportation, processing and disposal of hazardous and/or waste material."

/***************************************************************************************
* 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]
	}
}
