Fullers.Views.Index = Backbone.View.extend({  
  
  el: document.querySelector('body'),
 
  initialize: function(){
    _.bindAll(this, 'render'); // fixes loss of context for 'this' within methods
     this.render(); // not all views are self-rendering. This one is.
  },

  events: {
        
  },

  render: function(){
  	Fullers.hideLoad(); //Loading complete so hide the loading div
    Fullers.hideAll();
    Fullers.Modules.Map.refresh(); //Clean out the html inside the map div. Will fix a lot of map bugs
    document.querySelector('#home').style.display = "block"
    document.querySelector('#logo').style.display = "block"
    window.scrollTo(0,0);
  }

});


