A family of Microsoft relational database management systems designed for ease of use.
And, in addition to John and Ken's comments, using lookup fields on the table level is not recommended (see http:\www.mvps.org/access/lookup.htm). Lookups should be done on form as Ken recommended, not on tables.
Another point here, regarding John's OrderDetails table. Since you want to track inventory (item 2), then you should be using a Transactions table. This table will record ALL movement of stock either in or out. So it would replace the OrderDetails table by showing the line items for each order. But it would also be used to ADD items to inventory by purchase or manufacture. Allen Browne has an excellent article on how to work with Quantity on Hand calculations:
http://allenbrowne.com/appinventory.html
One last point. Its not a good idea to use spaces in Object names. This can come back to haunt you.