switching between 2 loops possible?

if(Serial.read())
   {
     int c = Serial.read();
     if (c == 'm')
     {
   Serial.println("Manual");
// check for serial data
if (Serial.available() > 0) {
// read the incoming byte:
incomingByte = Serial.read();
// if available, blink LED and print serial data received.

If you can't be bothered to indent your code properly, and can't be bothered to use Tools + Auto Format, I can't be bothered trying to make heads or tails of your mess.