function overSingle(e)
{
e.style.backgroundColor='#21285c';
e.lastChild.style.color= "#FFF"; 
	e.parentNode.onclick = function () {
		 e.lastChild.style.color= "#FFF";
	}

//alert(e.parentNode.nodeName);
}
function over(e)
{
e.style.backgroundColor='#21285c';
e.lastChild.style.color= "#FFF"; 
	e.parentNode.onclick = function () {
		 e.lastChild.style.color= "#FFF";
		 window.location.href = e.lastChild.href;
	}

//alert(e.parentNode.nodeName);
}
function out(e)
{
e.style.backgroundColor='#343d92';
e.lastChild.style.color= "#FFF";
}


