function goHere(sURL) {
    document.location.href=sURL;
}

function switchAttorney(who) {
    var thisSpan = document.getElementById(who);
    if(thisSpan.style.display == 'none') {
        thisSpan.style.display = 'block';
		switch(who) {
			case 'Kevin':
			  document.getElementById('Angela').style.display = 'none';
			  break;
			case 'Angela':
			  document.getElementById('Kevin').style.display = 'none';
			  break;
			default:
			}
    } else {
        thisSpan.style.display = 'none'
    };
}

function menuHoverIn(which) {
	var i = which;
	i.style.backgroundColor = '#CFDCD2';
	i.style.cursor = 'hand';
	i.style.color = '#21292B';
	i.style.fontWeight = 'bold';
}

function menuHoverOut(which) {
	var i = which;
	i.style.backgroundColor = 'transparent';
	i.style.cursor = 'default';
	i.style.color = '#CFDCD2';
	i.style.fontWeight = 'normal';
	}

