// ==UserScript==
// @name           960 Grid Background
// @namespace      com.adamfortuna.grids.960
// @description    Background for working with 960 width grids. Grid from cameronmoll.com.
// @include        http://localhost*
// @include        file://*
// ==/UserScript==
 

// function to set the backgrounf image
function setBackground() {
    // add the background style
    GM_addStyle('body { background:url("'+GM_getValue("image",picture)+'")}');
}
picture = 'http://static.adamfortuna.com/images/960grid.png';

// set the background on load
setBackground()