// ==UserScript==
// @name		360 no tips
// @namespace		http://rhyley.port5.com/gm/
// @description		Remove the "tips" from your Yahoo! 360 home page.
// @include		http://360.yahoo.com/*
// ==/UserScript==

tips = document.getElementById("ymgl-tips");
if (tips!=null) tips.parentNode.removeChild(tips);

