In the beginning, I was mapping department resources using the following format:

If InGroup ("ACCOUNTING")
Call "accounting.Kix"
EndIf


If InGroup ("Custsvc")
Call "custsvc.kix"
EndIf

By keeping the NT group names consistant with the associated kix resources we were able to complete the same task like this:

$members = "accounting","custsvs"
For Each $Element In $MEMBERS
? $Element
If InGroup ($Element)
? "-->" $Element
Call $Element+".KIX"
EndIf
Next

Is there an easier way to do this?