//This code for IE4+

//function to show Child menu for onMouseOver event

function showMenu(x) {

	if (document.all) {

		document.all[x].style.visibility = "visible";



//		if (x == "About") {

//			obj1 = document.all.tags("SELECT").dealertype;

//			obj1.style.visibility = "hidden";

//		}

/*		if (x == "Services" || x == "Products" || x == "Industries") {

			if (document.all.tags("SELECT")[1]){

				obj2 = document.all.tags("SELECT").dealertype;

				obj2.style.visibility = "hidden";

			}	

		}
*/
		if (x == "Services" || x == "Products" || x == "Industries") {

			if (document.all.tags("SELECT")[0]){

			obj1 = document.all.tags("SELECT")[0];

//			obj1.disabled = "true";
			obj1.style.visibility = "hidden";

			if (document.all.tags("SELECT")[1]){

				obj2 = document.all.tags("SELECT")[1];

				obj2.style.visibility = "hidden";

			}	
			}	

		}


	}

}

//function to hide Child menu for onMouseOut event

function hideMenu(x) {

	if (document.all) {

		document.all[x].style.visibility = "hidden";



//		if (x == "About") {

//			obj1 = document.all.tags("SELECT").dealertype;

//			obj1.style.visibility = "visible";

//		}

/*		if (x == "Services" || x == "Products" || x == "Industries") {

			if (document.all.tags("SELECT")[1]){

				obj2 = document.all.tags("SELECT").dealertype;

				obj2.style.visibility = "visible";

			}	

		}
*/
		if (x == "Services" || x == "Products" || x == "Industries") {

			if (document.all.tags("SELECT")[0]){

			obj1 = document.all.tags("SELECT")[0];

//			obj1.disabled = "false";
			obj1.style.visibility = "visible";

			if (document.all.tags("SELECT")[1]){

				obj2 = document.all.tags("SELECT")[1];

				obj2.style.visibility = "visible";

			}	
			}	

		}

		

	}

}



