BobTron / CHS Science

// ==UserScript==
// @name         CHS Science
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Remove the banners blocking half the screen
// @author       Justin Ly
// @match        http://chsscience.org/
// @grant        none
// @license      MIT
// ==/UserScript==

(function() {
    'use strict';
    window.onload = function(){
        var aTags = document.getElementsByName('leftFrame')[0].contentWindow.document.getElementsByTagName("a");
        aTags[1].onclick = function(){
            document.location.replace('http://chsscience.org/Teachers_Courses/Larry_DeMuthMain.htm');
        };
        aTags[2].onclick = function(){
            document.location.replace('http://chsscience.org/Teachers_Courses/Allannah_UjifusaMain.htm');
        };
    };
})();