Thank you for your reply.
The circuit I showed is indeed not complete but I have them in place. I'll change the first comment to prevent people braking there arduino board.
I just fnished the code with this bit of code.
#include <Servo.h>
Servo myservo;
void setup()
{
myservo.attach(9);
myservo.write(90); // set servo to mid-point
}
void loop() {}
And put the myServo.write in the switch code with different angles with every different case..
Thanks for the help and the next goal is to incoporate a display in the code and circuit.