this.Main = Class.create({
  sections:null,
  home:null,
  game:null,
  results:null,
  letreiro:null,
  
  initialize: function()
  {
    this.configSections();
    this.sections.openSection(Home.ID);
    this.results = new LastResults;
    
    jQuery( "#twitcup a" ).click( delegate( this, this.showModalComo ) );
    //jQuery( "body" ).show();
    
    jQuery( "#rodape" ).text( "\u00A9 Copyright " + new Date().getFullYear() + " - Embratur" );
  },
  
  showModalComo: function()
  {
    pageTracker._trackEvent('world-cup','clique','como-participar');
    jQuery("#como").modal( {overlayClose:true} );
  },
  
  configSections: function()
  {
    this.sections = new SectionManager;
    this.home = new Home;
    this.game = new Game;
    
    this.sections.addSection(this.home);
    this.sections.addSection(this.game);
  }
});

