Problem with grouping variables

Hi all

Im guessing this is a really simple problem but can anyone help me with this issue. Basically i have a number of variables on stage labeled Q_lvl_1 through to 17. Basically what i want to do is to group these variables togather and turn the hand cursor off all these variables…
rather than having to individually turn off the hand cursor for each variable.
this is the code i have so far:

Hand_off = new Array();
Qag_rooms = “Q_gal_”;
for (var i = 1; i<18; i++) {
var currFocus = eval(Qag_rooms+i);
if (currFocus == undefined) {
break;
} else {
Hand_off.push(currFocus);
}
}
for (var j = 0; j<Hand_off.length; j++) {
//These variables are nested in 2 movie clips//
QFloor.Q_lvl_1.Hand_off [s].useHandCursor = false;
};

any help would be greatfully appreciated!!!

Cheers
Clinton