There's an undocumented MS procedure called sp_MSforeachtable that you could use which is definately in 2000 and 2005.
To grant select permissions the usage would be:
exec sp_MSforeachtable @command1=' Grant Select on ? to RoleName'
To grant the other permissions either have a new statement for each one or just add them to the command like this:
exec sp_MSforeachtable @command1=' Grant Select on ? to RoleName; Grant Delete on ? to RoleName; RoleName;'
With a bit of playing around it might be possible to turn the role name into a parameter as well.
