|| problem

okay, so i have a if statement that looks like this:


if (!this.hitTest(_root.rwall1 || _root.rwall2)){
		_global.rSpeed = 8;
	}else{
		_global.rSpeed = 0;
	}

but it only works if i comment out one. (there is a movieclip named for each one) for example, if i block comment out _root.rwall1, it will detect my rwall2 collision, and vice versa. it wont detect either if they are both non-commented.

whats the problem?