// Facebook desuckification
//
// 0.0.1 - 2009-08-13 - Got tired of the suggestion box finally
//
// ==UserScript==
// @name        Facebook Desuckify
// @version	v0.0.1
// @description Greasemonkey script to do facebook desuckification
// @include     *facebook.com*
// ==/UserScript==

// Dump the suggestions box, because after years of trying, the algorithm
// still thinks that Random Person and I should be friends because "we both
// went to UBC".
function facebook_desuckify()
{
	// Find and detach the sugggestion box.
	var sug = document.getElementById('pymk_hp_box');
	if(sug) sug.parentNode.removeChild(sug);
}
document.addEventListener("DOMNodeInserted", facebook_desuckify, true);

