switch... case 0, 2, 4, 6, 8:

No, I think you can only have value.

If this is exactly what you want to do then,

if (menuActual % 2)
{
  // do even stuff
}
else
{
  // do odd stuff
}