Well, I'm not using OS authentication as I'm using php to code the frontend, but I think I got an idea for access levels.
Ok, now what I have is an item database and each item can be part of a specific group.
Items
-------------
ID
GroupID
There is one group that is won't be entered as an id into the items table (1 - Featured Items). This has its own table:
FeaturedItems
--------------------
ID
UserGroupID
UserID
ItemID
The User table has a access field that's really just a switch that allows them access to either all groups, or just the Feature Items group.
If the User belongs to a UserGroup, then for the Featured Items area they see the Items that correspond to their UserGroupID as shown in the FeaturedItems table - however, if the user doesn't belong to a group - the see the items that correspond to their UserID in the FeaturedItems table.
That will hopefully work. Any comments or ideas for refinement?