/*=================================================
// Project : Gamers Conflict
// Developed by Julien Després
// Copyright 2008. All rights reserved.
//=================================================*/

sfHover = function() {
	var sfEls = document.getElementById("nav").getElementsByTagName("LI");
	for (var i=0; i<sfEls.length; i++) {
		sfEls[i].onmouseover=function() {
			this.className+=" sfhover";
		}
		sfEls[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", sfHover);

function switchLatest(theLatest) {
    var latest = document.getElementById('latestSwitch').childNodes;
    for(var i = 0; i < latest.length; i++) {
        if(latest[i].innerHTML) {
            latest[i].style.display = 'none';
        }
    }
    document.getElementById(theLatest).style.display = 'block';
}
