// ==UserScript==
// @name           COD4 Server Banner
// @namespace      tacticalgamer.com
// @description    Adds both COD4 server banners into the forums.
// @include        http://www.tacticalgamer.com/*
// ==/UserScript==
// version 0.1 - 4/06/2008 - jmaker

// YOU MAY CHANGE THIS TO EITHER (left, center, right)
var position = "center";

// find the element to insert after
menu = document.evaluate("//div[contains(@class, 'tborder')]", document, null, XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE, null);

// create the code for our banners
var div = document.createElement("div");
div.style.marginTop = "10px";
div.style.textAlign = position;
div.innerHTML = '<a href="http://www.gametracker.com/server_info/75.125.97.200:28960/" target="_blank">' +
'<img src="http://cache.www.gametracker.com/server_info/75.125.97.200:28960/b_350x20_C5A6C3E-383F2D-D2E1B5-2E3226.png" border="0" /></a>' +
'<a href="http://www.gametracker.com/server_info/75.125.97.201:28960/" target="_blank">' +
'<img style="margin-left: 10px" src="http://cache.www.gametracker.com/server_info/75.125.97.201:28960/b_350x20_C5A6C3E-383F2D-D2E1B5-2E3226.png" border="0" /></a>';

// here we insert our code
menu.snapshotItem(0).parentNode.insertBefore(div, menu.snapshotItem(0).nextSibling);