Hi
I'd suggest two tables:
table one:
category
categoryID|categoryName
1|fiction
2|non-fiction
3|sci-fi
etc etc
table two"
story
storyID|categoryID|storyName|etc etc
1|1|some book|
2|1|some other book|
3|2|Learn PHP|
4|3|To Mars and back|
etc etc
the two tables are related via categoryID
This way its easy to add and change categories etc (ie far more scalable) and the difference in load on the db would be next to nothing
Hope this helps
/s