Lets observe the parity property of integers while adding them or multiplying. It's simple to notice that when we add two numbers, the parity of the result depends on parity of summands:
x y x+y
-----------
E E E
E O O
O E O
O O E
(Here "E" stands for "even", and "O" for "odd"). There is an obvious similarity with logical XOR function (when oddness is taken as True).
Ox Oy Ox xor Oy
-------------------
F F F
T F T
F T T
T T F
(Ox and Oy means "oddness of x" and "... of y" resp.)
And the same thing is with multiplication, as it behaves like logical conjunction (AND).
And now the question is: why?
Thanks in advance :)
If you replace $\top$ and $\bot$ with 1 and 0, as you noticed you can apply the rules of standard arithmetic. In fact you get a complete algebraic structure. $\bot$ is the neutral element with regards to $\lor$, $\top$ the neutral element with regards to $\land$. There also laws for combining $\lor$ and $\land$: A $\lor$ (B $\land$ C) = (A $\lor$ B) $\land$ (B $\lor$ C). See http://en.wikipedia.org/wiki/Boolean_algebra_(structure) for the full details.
Another observation you made is that subsets of $\mathbb{N}$ (or $\mathbb{Z}$), can have algebraic structures on their own. In higher algebra this is an reoccuring theme. For example prime numbers, as a subset of the natural numbers have all kinds of interesting properties. The odd and even numbers are studied in modular arithmetic. For example everybody knows that a clock has it's own arithmetic: 23 hours + 2 hour = 1 hour.
Algebra is the study of these related properties across all kinds of structures. This is not only true for logical operations (Boolean algebra), but for geometry as well (algebraic geometric). The fact that all these phenomena can be studied in a formal way is one of the most important insight of modern mathematics.