To Hittest or Not To Hittest

Hittesting has become pretty much the most important part of my game. So ive ended up putting 62 hittests on one of four secsions per enemy. So understandably, lag central, anybody got a more efficant way of doing this code.

onClipEvent (enterFrame) {
if (_root.floor.ai1.hitTest (this)) {
_root.floor.enemy1._y+=15
}
if (_root.floor.ai2.hitTest (this)) {
_root.floor.enemy1._y+=15
}
if (_root.floor.ai3.hitTest (this)) {
_root.floor.enemy1._y+=15
}
if (_root.floor.ai4.hitTest (this)) {
_root.floor.enemy1._y+=15
}
if (_root.floor.ai5.hitTest (this)) {
_root.floor.enemy1._y+=15
}
}