// ==UserScript==
// @name          TomsHardware iFrame
// @namespace     http://sixside.com/
// @description   This script hides the iframe ads found in articles on the TomsHardware.com website
// @include       http://www.tomshardware.com/*
// ==/UserScript==
var alliFrames, thisiFrame;
alliFrames = document.getElementsByTagName('iframe');
for (var i = 0; i < alliFrames.length; i++) {
    thisiFrame = alliFrames[i];
    // do something with iFrame
	thisiFrame.width = 0;
	thisiFrame.height = 0;
}
