Fullers.Views.Pubs = Backbone.View.extend({  
  
  el: document.querySelector('body'),
 
  initialize: function(id){
    _.bindAll(this, 'render'); // fixes loss of context for 'this' within methods
     this.render(id); //Render the view
  },
  
  render: function(id){
  	Fullers.hideAll();
  	alert("Viewing all pubs");
    window.scrollTo(0,0);
  }

});
