May be you haven't enabled Agent XPs for SQL2005, and when you try to access maintenance plan, SQL will report message like this:
Agent XPs component is turned off as part of the security configuration
You should enable it as below:
sp_configure 'Agent XPs', 1
reconfigure
go