// JavaScript Document
function showMe(Section)
{
	if(Section == 'installation')
	{
		document.getElementById('installation').style.display = 'inline';
		document.getElementById('repair').style.display = 'none';
		document.getElementById('remodeling').style.display = 'none';
	}
	else if (Section == 'repair')
	{
		document.getElementById('installation').style.display = 'none';
		document.getElementById('repair').style.display = 'inline';
		document.getElementById('remodeling').style.display = 'none';
	}
	else if (Section == 'remodeling')
	{
		document.getElementById('installation').style.display = 'none';
		document.getElementById('repair').style.display = 'none';
		document.getElementById('remodeling').style.display = 'inline';
	}
}