// Hide StudiVZ "Neuigkeiten"
// version 0.1 BETA!
// 2007-05-22
// Copyright (c) 2007, Florian Knorn
// http://www.florian-knorn.com
//
// Released under the GPL license
// http://www.gnu.org/copyleft/gpl.html
//
// --------------------------------------------------------------------
//
// This is a Greasemonkey user script.  To install it, you need
// Greasemonkey 0.3 or later: 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 "Hello World", and click Uninstall.
//
// --------------------------------------------------------------------
//
// This is my very first Greasemonkey script, so please go easy on my
// in case it is poorly written, it doesn't work properly or just plain
// don't like it... Thanks!
//
// Find the latest version here:
// http://www.knorn.org/misc_files/hide.studivz.neuigkeiten.user.js
//
// --------------------------------------------------------------------
//
// ==UserScript==
// @name          Hide StudiVZ "Neuigkeiten"
// @namespace     http://www.florian-knorn.com
// @description   Hide "Neuigkeiten" section from StudiVZ home page
// @include       http://*studivz.net/home.php
// ==/UserScript==

var all_td_info = document.evaluate( "//td[@class='info']", document, null, XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE, null);
var neuigkeiten = all_td_info.snapshotItem(1)
neuigkeiten.parentNode.removeChild(neuigkeiten)

