var control1 = "hServices";

var control2 = "hContract";



window.onload = function()

{

	x = document.getElementById('waterBottomPics');

	check = x.innerHTML;

	checkResult = check.indexOf('No documents found');

	if (checkResult != -1)

	{

		x.style.visibility = "hidden";

	}

}



function changeSub(x,y)

{

menu = document.getElementById(x);

if (y == "in")

{

	menu.style.visibility = "visible";

}

if (y == "out")

{

	menu.style.visibility = "hidden";

}

}



function goToContact(page)

{

window.location = "contact-us.html";

}