Sorry, don't want to take anything away from mwolf00, however if you do the following you get the table name and the triggers on it....
SELECT par.Name AS 'Table', trig.Name AS 'Trigger Name'
FROM sysObjects trig
JOIN sysObjects par
ON par.ID = trig.parent_obj
WHERE trig.xtype = 'TR'
If that isn't what you want, go to Enterprise Manager, choose to script all the tables and from the options tab click "Script Triggers". Then once it's done copy it into Notepad and bob's your uncle.
Hope all that helps.
Sam