// ==UserScript==
// @name PMOG lagfree shop
// @namespace davidsev
// @description Makes the inventory window stationary.
// @include http*://pmog.com/shoppe
// @include http*://*.pmog.com/shoppe
// ==/UserScript==
// This code is copyright David Severwright 2008.
// You can do what you want with this, just credit me etc.
var divs = document.getElementsByClassName("shoppe_sidebar");
for (i = 0; i < divs.length; i++)
{
divs[i].style.position = "absolute";
}
