    function LoadPlayers() {
        var myDate = new Date()
        var myVar = myDate.getYear() + myDate.getMonth() + myDate.getDate() + myDate.getSeconds();
        var myObj = new xml("http://thebiggame.pokerstars.net/data/tbgplayers.json?"+myVar, renderPlayers, null, null);
    }
	function renderPlayers(a) {
	try{
	    var players = eval(a.responseText);
        var rootPath = "http://thebiggame.pokerstars.net/images/players/";
        var playerPath = "http://thebiggame.pokerstars.net/players/"
	    var ext=".jpg";
	    var div = document.getElementById("recentPlayers");
	    div.innerHTML = "";
	    var widthHeight = (div.parentNode.offsetWidth - 46 - 40) / 3
	    widthHeight = (widthHeight > 85) ? 85 : widthHeight;
	    for (var i = 0, il = players.length; i < il; i++) {
	        aLink = cE("a", { href: playerPath + players[i] + "/" })
	        anImg = cE("img", { src: rootPath + players[i] + ext, width: widthHeight, height: widthHeight, className: "week-players", alt: CreateAltTag(players[i]) });
	        addEvent(anImg, "mouseover", function (e) { sO(nE(e), { style: { opacity: 70} }) });
	        addEvent(anImg, "mouseout", function (e) { sO(nE(e), { style: { opacity: 100} }) });
	        //sO(anImg, { style: {opacity:50} })
	        aLink.appendChild(anImg);
	        div.appendChild(aLink);
	    }

	    if (players.length > 6) {
	        try {
	            sO(div, { style: {marginTop:"5px"} })
	            div.style.height = (div.parentNode.offsetHeight - 10) +"px";
	            fleXenv.fleXcrollMain(div);
        } catch (e) { }  }
		}catch(e){};
	}
	function CreateAltTag(playerName) {
	    var Names = playerName.split("-")
	    var retString = "";
	    for (var s = 0, sl = Names.length; s < sl; s++) {
	        retString = (retString === "") ? capMe(Names[s]) : retString + " " + capMe(Names[s]);
        }
        return retString;
	}
	function capMe(string) {
	    return string.charAt(0).toUpperCase() + string.slice(1);
	}
	addEvent(window, "load", LoadPlayers) 
