try{
	document.execCommand('BackgroundImageCache', false, true);
}catch(e){}

startList = function() {
	if (document.all&&document.getElementById) {
		navRoot = document.getElementById("mainNav");
		if(navRoot){
			for (i=0; i<navRoot.childNodes.length; i++) {
			node = navRoot.childNodes[i];
				if (node.nodeName=="LI") {
					var doc = document.documentElement;
					var selects = doc.getElementsByTagName('select');
					node.onmouseover=function() {
						this.className="mainLi";
						var selLen = selects.length;
						var i = 0;
						while(i < selLen){
							selects[i].style.visibility = 'hidden';
							i++;
						}
					}
					node.onmouseout=function() {
						this.className= "";
						var selLen = selects.length;
						var i = 0;
						while(i < selLen){
							selects[i].style.visibility = 'visible';
							i++;
						}
					}
				}
			}
		}
	}
}
function doShopByPlayer(thissel){
var theLocation = thissel.options[thissel.options.selectedIndex].value;
	if(theLocation != ''){
		document.location = theLocation;
	}
}
