// ==UserScript==
// @name          SexyDesktopFix
// @namespace     http://www.cyberpomo.com/
// @description   Ta bort skräp från bildsidorna hos SexyDesktop
// @include       http://www.sexydesktop.co.uk/code/cool.cgi*
// ==/UserScript==

function addGlobalStyle(css) {
    var head, style;
    head = document.getElementsByTagName('head')[0];
    if (!head) { return; }
    style = document.createElement('style');
    style.type = 'text/css';
    style.innerHTML = css;
    head.appendChild(style);
}

var img = document.getElementById("preview");
var body = document.getElementsByTagName("body")[0];

body.insertBefore(img,body.firstChild);

while(img.nextSibling) {
   img.nextSibling.parentNode.removeChild(img.nextSibling);
}

addGlobalStyle("body {margin: 0 !important;padding: 0 !important;}");

