Ok, Hopefully last thing and not sure if its possible in an efficient manner.
I'm using URL Rewriting to convert /content/4.aspx into
/content.aspx?id=4
Using the sitenode template I can pull my content object from my database just once and assign the proper title for that ID along with all the formatting and content with just 1 database pull. This creates something like: Home > Caesars Palace Hotel and Casino
Is it possible to create a dynamic site hierarchy with just 1 database pull? In other words, I'd like it to look like: Home > Las Vegas > Caesars Palace Hotel and Casino
Now I can see how to add nodes in the global.asax (which would require a second database pull), or I could just alter my function to output a link going to the content category plus the ">" plus the content title, but basically I'm asking if there is a best practices way of doing this I should be aware of.