// JavaScript Document

function showOtherSports(){document.getElementById('navDrop').style.display='block'}
function hideOtherSports(){document.getElementById('navDrop').style.display='none'}
function hoverNav(el) {
	var as=el.getElementsByTagName('a');
	as[0].style.color='#000';
	el.style.backgroundColor='#ccc';
	el.style.color='#000';
}
function hoverOutNav(el) {
	var as=el.getElementsByTagName('a')
	as[0].style.color='#fff';
	el.style.backgroundColor='#555';
	el.style.color='#fff';
}
function prepNavDrop() {
	var tds=document.getElementById('navDrop').getElementsByTagName('td');
	for (var i=0; i<tds.length; i++) {
		tds[i].onmouseover=function(){hoverNav(this);}
		tds[i].onmouseout=function(){hoverOutNav(this);}
	}
}
