It should be, for example, (a == b), not (a = b).
You are assigning values, which will always be treated as true in your if statements. You want to check if the variables are equal.
The = / == error is one of the most common errors new programmers make, and one of the hardest to find.
damn, i knew that, THANKS!