// ==UserScript==
// @name           Weather Graph
// @namespace      http://ugray.be
// @description    Strip down the Weather.ca graph
// @include        http://www.theweathernetwork.com/index.php?product=hourlyfx&placecode=*&hourlytype=hourlygraph
// ==/UserScript==

graph = document.getElementById("hfx");
body = document.getElementById("hourlyfx");
container = body.parentNode;
container.insertBefore(graph,body);
container.removeChild(body);