var SiteRouter = Router.extend({ el: 'body', routes: { '/': 'intro', '/store': 'store', '/hub': 'hub', '/story': 'story', '/archive': 'archive', '/faq': 'faq', '/search': 'search', }, initialize: function(){ this.route() }, go: function(url){ if (app.view && app.view.hide) { app.view.hide() } this.parseRoute(url) }, intro: function(){ }, store: function(){ }, hub: function(){ }, story: function(){ }, archive: function(){ }, })