#  This section defines the item array, containing every possible entry in the
#  shopping cart system.  Each item has a unique name, which is the key of
#  the array.  The array information proper is a three entry list, with the first
#  entry being the price in dollars, the second entry being the full text title,
#  and the last entry being the category of the item.

set item(hrs-book01) {5.25 "Herb's Bogus Book 1" Paperback}
set item(hrs-book02) {5.75 "Herb's Bogus Book 2" Paperback}
set item(hrs-book03) {10.15 "Herb's Bogus Book 3" Hardback}
set item(hrs-book04) {10.95 "Herb's Bogus Book 4" "Hardback"}
set item(hrs-tape01) {8.58 "Herb's Bogus Cassette 1" Cassette}
set item(hrs-tape02) {8.00 "Herb's Bogus Cassette 2" Cassette }
set item(hrs-video01) {12.00 "Herb's Bogus Video 1" Video }
set item(hrs-video02) {12.25 "Herb's Bogus Video 2" Video }
set item(hrs-video03) {14.33 "Herb's Bogus Video 3" Video }

#  This list contains the order that items are to be listed in cart form.

set itemorder "hrs-book01 hrs-book02 hrs-book03 hrs-book04 hrs-tape01 hrs-tape02
hrs-video01 hrs-video02 hrs-video03"


