// ==UserScript==
// @name                HootSuite fixer
// @namespace        http://toys.funcy.co.uk/userscripts/
// @description         Gets rid of the irritating frameset nonsense that Hootsuite seems to think i want.
// @include        http://*.hootsuite.com/*
// @include        http://hootsuite.com/*
// @include         http://ow.ly/*
// ==/UserScript==

(function(d){

    // HootSuite
    // check for the existence of the hootsuite iframe
    var iframe = document.getElementById('hootFrame');
    // if it's there, grab the src attribute and display that instead
    if (iframe !== null)
    {
        window.location = iframe.src;
    }

}(document));

