/* generated javascript */
var skin = 'monobook';
var stylepath = '/w/skins';

/* MediaWiki:Common.js */
/* Any JavaScript here will be loaded for all users on every page load. */
//BEGIN remove Main Page title

function clearMainPage(){
     if (wgTitle == 'Main Page') {
          var h1tags = document.getElementsByTagName("h1");
          var h = h1tags[0];
          var parent = h.parentNode;

          parent.removeChild(h);
     }
}

addOnloadHook(clearMainPage);

//END remove Main Page title

/* MediaWiki:Monobook.js */
/* Any JavaScript here will be loaded for users using the MonoBook skin */