function switchButtonBkg(inButton) {
	var elem = event.srcElement;

	if (inButton) {
		elem.style.background = "none";
		elem.style.color = "navy";
		
	}
	else {
		elem.style.background = "url(/images/headfade.gif) repeat";
		elem.style.color = "navy";
	}
	
}

function onButtonSelect(navlink) {
	if(navlink) {
		window.location.href=navlink;
	}
}