function ieHover(){
	var _ul = document.getElementsByTagName('ul');//$$('ul.team-player');
	if (_ul.length){
		for (var j=0; j<_ul.length; j++){
			if (_ul[j].className.indexOf('team-player')!=1){
			var _player = _ul[j].getElementsByTagName('li');
				if (_player.length)
				{
					for (var i=0; i<_player.length; i++){
						_player[i].onmouseover = function()
						{
							this.className += " hover";
						}
						_player[i].onmouseout = function()
						{
							this.className = this.className.replace("hover", "");
						}
					}
				}
			}
		}
	}
	var nodes = $('div.bg');
	for (var i=0; i<nodes.length; i++)
	{
		nodes[i].onmouseover = function()
		{
			this.className += " bg-hover";
		}
		nodes[i].onmouseout = function()
		{
			this.className = this.className.replace("bg-hover", "");
		}
	}
}
if (window.attachEvent && !window.opera)
	window.attachEvent("onload", ieHover);