/*
Simple Money Hack
Created by Webworldx for Forumer [PHPBB]

http://forum.ifcode.com
*/

function append_money(){
	var iTD = document.getElementsByTagName('TD');
	for(i=0;i<iTD.length;i++){
		if(iTD[i].className=="row1" && iTD[i].getAttribute('width') == "150" && iTD[i].innerHTML.match(/posts: (\d+)/i) != null){
			var iPosts = RegExp.$1
			var iMoney = iPosts * 15;
			iTD[i].getElementsByTagName('SPAN')[1].innerHTML += "<br />Cash: $" + iMoney;
		}
	}
}

window.onload = append_money;