If you uploaded a PNG of the database relationships window for just the relevant tables, that would help. Otherwise, description of the tables in something like this format would help:
Code:
ConstructionTypes
ConstrType PK Autonumber
ConstrTypeName Text
Inspections
InspectionID PK autonumber
ComponentID FK to Components
ConditionCode Number
InspectionDate Date
FrequencyInMonths Number
Bridges
BridgeID PK autonumber
BridgeType FK to ConstructionTypes
BridgeName Text
Components
ComponentID PK, autokey
BridgeID FK to Bridges
CompTYpe FK to some other table
By the way, Date is a reserved word and should never be used by itself as a field name. Same with Year, Day, Month, Name, and a whole lot of other common terms.