It's really really hard to provide answers to making FULL Site with Backbone in my answer. So I would provide you with these tips, see what applies to your site and modify them to your liking.( I think you will be spending more time now on SO asking Backbone questions)
Tip #1
Ask a designer to put storyboard of site example1 and example2
Tip #2
From the storyboard draw Grid's putting each functional module as a MVC component example
Tip #3
Refine your models, collections to consumable and maintainable number. Then refine some more. From my experience the pages i developed never had more than 3 models and two collections.
Tip #4
Reuse, Reuse and Reuse again. Server resources and DB call's are costly (unless implemented intelligently with caching, indexing and clever programming). Opt for client localStorage caching use scripts such as Kizzy, use same models to display different views
Tip #5
All customers want is solution to their problem. Don't through a philosophy at them. UX design does not matter the most i have come across sites which were looking extremely simple and really awesome at doing the job. ( I got no time to look at your fancy jingling bananas[means all fancy animations, shiny buttons], but other dev's do)
Tip #6
Sit with single model,view and collection finish it. Try the UI with what ever you think customer will do( not you, not even your manager) your intention here is to find quirks. I noted that signup for newsletter appends validation message each time i click signup
Tip #7
Never assume any views existing in the html sent from server. Views should be self containing
have anything more you want me to answer i will add them here :)
Menu->MenuItems->[MenuItem,MenuItem]where eachMenuItem->SubMenuItems->[MenuItem,MenuItem..]so you would deduce MenuItem to be model and MenuItems to be collection. But problem has just begun (if you try it you will understand). Rather than doing this I Suggest to use a robust Menu jQueryplugin that could turn your model collection to menu?? – Deeptechtons May 19 '12 at 4:30