	function productsSelected()
	{
		document.getElementById("home").style.color="white";
		document.getElementById("products").style.color="white";
		document.getElementById("products").style.backgroundColor="orange";
		document.getElementById("contactUs").style.color="white";
		document.getElementById("aboutUs").style.color="white";
		document.getElementById("productsMenu").style.display="block";
		document.getElementById("productsMenu").style.visibility="visible";
		document.getElementById("aboutUsMenu").style.visibility="hidden";
	}
 
	function aboutUsSelected()
	{
		document.getElementById("products").style.color="white";
		document.getElementById("home").style.color="white";
		document.getElementById("contactUs").style.color="white";
		document.getElementById("aboutUs").style.color="white";
		document.getElementById("aboutUs").style.backgroundColor="orange";
		document.getElementById("productsMenu").style.display="none";
		document.getElementById("aboutUsMenu").style.display="block";
		document.getElementById("aboutUsMenu").style.visibility="visible";
	}
 
	function homeSelected()
	{
		document.getElementById("products").style.color="white";
		document.getElementById("home").style.color="white";
		document.getElementById("home").style.backgroundColor="orange";
		document.getElementById("contactUs").style.color="white";
		document.getElementById("aboutUs").style.color="white";
		document.getElementById("productsMenu").style.visibility="hidden";
		document.getElementById("aboutUsMenu").style.visibility="hidden";
	}
 
	function contactUsSelected()
	{
		document.getElementById("products").style.color="white";
		document.getElementById("home").style.color="white";
		document.getElementById("contactUs").style.color="white";
		document.getElementById("contactUs").style.backgroundColor="orange";
		document.getElementById("aboutUs").style.color="white";
		document.getElementById("productsMenu").style.visibility="hidden";
		document.getElementById("aboutUsMenu").style.visibility="hidden";
	}
 
	function faqSelected()
	{
		document.getElementById("products").style.color="white";
		document.getElementById("home").style.color="white";
		document.getElementById("contactUs").style.color="white";
		document.getElementById("aboutUs").style.color="white";
		document.getElementById("faq").style.color="white";
		document.getElementById("faq").style.backgroundColor="orange";
		document.getElementById("productsMenu").style.visibility="hidden";
		document.getElementById("aboutUsMenu").style.visibility="hidden";
	}

	function resetProductsMenuState()
	{
		document.getElementById("products").style.color="white";
		document.getElementById("home").style.color="white";
		document.getElementById("contactUs").style.color="white";
		document.getElementById("aboutUs").style.color="white";
		document.getElementById("productsMenu").style.display="block";
		document.getElementById("productsMenu").style.visibility="visible";
		document.getElementById("aboutUsMenu").style.visibility="hidden";
	}
 
	function resetAboutUsState()
	{
		document.getElementById("products").style.color="white";
		document.getElementById("home").style.color="white";
		document.getElementById("contactUs").style.color="white";
		document.getElementById("aboutUs").style.color="white";
		document.getElementById("productsMenu").style.display="block";
		document.getElementById("productsMenu").style.visibility="hidden";
		document.getElementById("aboutUsMenu").style.visibility="visible";
	}

 