function overSingle(e)
{
e.style.backgroundColor='#E8E8E8';
e.lastChild.style.color= "#003F82"; 
	e.parentNode.onclick = function () {
		 e.lastChild.style.color= "#003F82";
	}

//alert(e.parentNode.nodeName);
}
function over(e)
{
e.style.backgroundColor='#E8E8E8';
e.lastChild.style.color= "#003F82"; 
	e.parentNode.onclick = function () {
		 e.lastChild.style.color= "#003F82";
		 window.location.href = e.lastChild.href;
	}

//alert(e.parentNode.nodeName);
}
function out(e)
{
e.style.backgroundColor='#e53517';
e.lastChild.style.color= "#FFF";
}


