function doMenu(item) {
	if (item==1) { document.location.href = "home.php"; }
	if (item==2) { document.location.href = "services.php";  
	}
	if (item==3) { document.location.href = "equipment.php"; 
	}
	if (item==4) { document.location.href = "gallery.php"; 
	}
	if (item==5) { document.location.href = "about.php"; 
	}
}
function menucolor(opt,fld) {
	//fuschia: FF0066
	if (opt == 2) { fld.style.backgroundColor="#C0C0C0"; fld.style.color="black"; }
	if (opt == 3) { fld.style.backgroundColor="#666666"; fld.style.color="white"; }
	if (opt == 1)  fld.style.backgroundColor="#666666";
	if (opt == 0) fld.style.backgroundColor="#222222";
}
