Question about subplots

I'm trying to make a figure with six subplots, here's what I've managed
so far:

http://dl.dropbox.com/u/136038/bar-00-protagonist.png

That's actually done with two subplots (the top row and the bottom row)
and what looks almost like 3 separate pairs of axes in each row is
actually just one pair of axes with three sets of data plotted on it.

Perhaps what I've done is the best way to do it. But I think the code
for this would be much simpler if I used six subplots instead, but
here's my problem: I want each subplot to have its own title (easily
done), and I also want the top row of three subplots to have an
associated title and the bottom row of three subplots to have an
associated title. Can I do this? My first instinct was to create two
subplots (top row and bottom row) then within each subplot create three
subplots (three columns), then I could just place all the titles I want
using title() commands. This recursive subplotting doesn't seem to work
though.

Thanks