// Hide StudiVZ "Kennst Du schon..."
// 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 second 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 "Kennst Du schon..."
// @namespace     http://www.florian-knorn.com
// @description   Hide "Kennst Du schon..." block from StudiVZ home page
// @include       http://*studivz.net/home.php
// ==/UserScript==

var kennstduschon = document.getElementById('kds_form');
kennstduschon.parentNode.removeChild(kennstduschon)

