The function f(x) takes a string input and performs the following operations:
- For each character in the input string:
  - If the character is a vowel (a, e, i, o, u), it is replaced with the next vowel in the alphabetical order.
  - If the character is a consonant or a non-alphabet character, it remains unchanged.

