PMOG lagfree shop

By David Severwright Last update Jul 21, 2008 — Installed 40 times. Daily Installs: 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
// ==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";
}