I am creating a new database for some products but trying to figure out the best way to layout the database. This is a very small shopping cart. The end result should produce something sorta like the following taking from another website
http://www.shabangexpress.com/sample.htm
So for the database layout I have currently
Category
	Cat_ID
	Cat_Name
	Cat_Desc
	Cat_Active
	
Products
	Prod_ID
	Prod_CatID
	Prod_Name
	Prod_Desc
	Prod_SmPic
	Prod_LgPic
	Prod_ListPrice
	Prod_SalePrice
	Prod_Active
Showhow I need to set different variables for each product which I was thinking something like
ProdItems
	Item_ID
	Item_ProdID
	Item_Name
	Item_Desc
	
ProdItemsDetail
	Detail_ID
	Detail_ItemID
	Detail_Name
I dont think the above would be the best way, any ideas or suggestions?