// Fix Practicum non-IE compatibility user script
// version 0.1 beta
// 2006-01-28
// Copyright (c) 2006, YJ Soon
// Released under the GPL license
// http://www.gnu.org/copyleft/gpl.html
//
// --------------------------------------------------------------------
//
// This is a Greasemonkey user script.
//
// To install, you need Greasemonkey: http://greasemonkey.mozdev.org/
// Then restart Firefox and revisit this script.
// Under Tools, there will be a new menu item to "Install User Script".
// Accept the default configuration and install.
//
// To uninstall, go to Tools/Manage User Scripts,
// select "Fix Practicum Compatibility", and click Uninstall.
//
// --------------------------------------------------------------------
//
// ==UserScript==
// @name          Fix Practicum Compatibility
// @namespace     http://yjblog.stupidchicken.com
// @description   Fixes NIE practicum website incompatibility with non-IE browsers
// @include       http://eduweb.nie.edu.sg/*
// ==/UserScript==


var e1 = document.getElementById('elOneChild');
e1.style.display = "block";
var e2 = document.getElementById('elTwoChild');
e2.style.display = "block";
var e3 = document.getElementById('elFourChild');
e3.style.display = "block";
