Fullers.Views.Attractions = 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();
    Fullers.Modules.Map.refresh(); //Clears any old maps
  	$("#attractions").show();
  	$(".attractions").html(parser2.getAttractionsHTML());
    window.scrollTo(0,0);
  }
});
