You can use these to system functions/procs to tweak the resource usage:
-- View Current settings...
SELECT FULLTEXTSERVICEPROPERTY('ResourceUsage')
-- Change current settings (1=background; 5=dedicated)
exec sp_fulltext_service 'resource_usage','3'
-Dan