You can determine if a column is an identity using the COLUMNPROPERTY, as follows:
SELECT COLUMNPROPERTY( OBJECT_ID('YourTable'),'YourColumn', 'IsIdentity')
If this returns a value of 1, the column is an identity column.
SQL Server Helper
http://www.sql-server-helper.com