// ==UserScript==
// @name MyYearBook.com Secret Admirer Cheat
// @namespace http://www.idolpx.com/greasemonkey
// @description Highlights your secret admirer so you don't have to guess.
// @include http://www.myyearbook.com/index.php*
// ==/UserScript==
//
// Date: 2007.6.5
// Author: idolpx
// Email: idolpx(at)idolpx.com
//
var moddingDOM = false;
window.addEventListener("load", init, false);
function init()
{
document.addEventListener("DOMNodeInserted", nodeInserted, false);
setTimeout(go, 50, document.body);
}
function nodeInserted(e)
{
//GM_log("Inserted: " + e.target);
if (!moddingDOM)
go(e.target);
}
function go(traversalRoot)
{
var mm = document.getElementById("img1");
if (mm) {
for (var i = 1; i < 13; i++) {
var mm = document.getElementById("img"+i);
if (mm.getAttribute("onClick").indexOf("'1'") > 0) {
//GM_log(mm.getAttribute("onClick"));
var bg = document.getElementById("background"+i);
bg.style.backgroundColor = "#E1FEEA";
bg.style.border="1px solid #009966";
}
}
}
}