Quick "?" about rotation on rollover

My code at this moment is problably wrong but what im trying to do is to get it so my object2 will rotate continuously on rollover and not just once.

code in object1:

[color=darkorange]on (rollover) {
currentRotation = _root.object2._rotation;
_root.object 2._rotation = currentRotation -= 1;
}
[/color]

on (rollOver) {
	_root.hit.onEnterFrame = function(){this._rotation-=1}
}
on (rollOut) {
	delete _root.hit.onEnterFrame
}

Prophet.

PS in the future, you wanna use AS tags for formatting? [ as ] and [ /as ] without the spaces obvioulsy…

thx

no prob

Prophet.