//The Nav Function-right hand nav
function show(DivFielder,rhnOver,DivText,rhnColor) {

    if (ns4) {
		document.layers[DivFielder].visibility = "show"
		document[rhnOver].src = "images/rhn_ball-over.gif"
		document.layers[DivText].visibility = "show"
		}

		else if (ns6) {
		document.getElementById(DivFielder).style.visibility = "visible"
		document[rhnOver].src = "images/rhn_ball-over.gif"
		document.getElementById(DivText).style.visibility = "visible"
		document.getElementById(rhnColor).style.color="#99CC99"
		}

		else {
		document.all[DivFielder].style.visibility="visible"
		document.all[rhnOver].src = "images/rhn_ball-over.gif"
		document.all[DivText].style.visibility="visible"
		document.all[rhnColor].style.color="#99CC99"
	}

}


function hide(DivFielder,rhnOff,DivText,rhnColor) {

        if (ns4) {
		document.layers[DivFielder].visibility = "hide"
		document[rhnOff].src = "images/rhn_ball.gif"
		document.layers[DivText].visibility = "hide"
		}

		else if (ns6) {
		document.getElementById(DivFielder).style.visibility = "hidden"
		document[rhnOff].src = "images/rhn_ball.gif"
		document.getElementById(DivText).style.visibility = "hidden"
		document.getElementById(rhnColor).style.color="#000000"
		}

        else {
		document.all[DivFielder].style.visibility="hidden"
		document.all[rhnOff].src = "images/rhn_ball.gif"
		document.all[DivText].style.visibility="hidden"
		document.all[rhnColor].style.color="#000000"
		}

}


//The Fielder Function-image map

function showFielder(rhnOver,rhnColor,DivText) {

    if (ns4) {
		document[rhnOver].src = "images/rhn_ball-over.gif"
		document.layers[DivText].visibility = "show"
		}

		else if (ns6) {
		document[rhnOver].src = "images/rhn_ball-over.gif"
		document.getElementById(rhnColor).style.color="#99CC99"
		document.getElementById(DivText).style.visibility = "visible"
        }

		else {
		document.all[rhnOver].src = "images/rhn_ball-over.gif"
		document.all[rhnColor].style.color="#99CC99"
		document.all[DivText].style.visibility="visible"
	}

}


function hideFielder(rhnOff,rhnColor,DivText) {

        if (ns4) {
		document[rhnOff].src = "images/rhn_ball.gif"
		document.layers[DivText].visibility = "hide"
		}

		else if (ns6) {
		document[rhnOff].src = "images/rhn_ball.gif"
		document.getElementById(rhnColor).style.color="#000000"
		document.getElementById(DivText).style.visibility = "hidden"
		}

		else {
		document.all[rhnOff].src = "images/rhn_ball.gif"
		document.all[rhnColor].style.color="#000000"
		document.all[DivText].style.visibility="hidden"
		}

}


//The slips function

function showSlips(rhnOver,DivText,rhnColor) {

    if (ns4) {
		document[rhnOver].src = "images/rhn_ball-over.gif"
		document[DivText].visibility="show"
		document["slips1Fielder"].visibility="show"
		document["slips2Fielder"].visibility="show"
		document["slips3Fielder"].visibility="show"
		}

		else if (ns6) {
		document.getElementById(DivText).style.visibility = "visible"
		document[rhnOver].src = "images/rhn_ball-over.gif"
		document.getElementById("slips1Fielder").style.visibility="visible"
		document.getElementById("slips2Fielder").style.visibility="visible"
		document.getElementById("slips3Fielder").style.visibility="visible"
		document.getElementById(rhnColor).style.color="#99CC99"
		}

		else {
		document.all[rhnOver].src = "images/rhn_ball-over.gif"
		document.all.slips1Fielder.style.visibility="visible"
		document.all.slips2Fielder.style.visibility="visible"
		document.all.slips3Fielder.style.visibility="visible"
		document.all[DivText].style.visibility="visible"
		document.all[rhnColor].style.color="#99CC99"
	}

}


function hideSlips(rhnOff,DivText,rhnColor) {

        if (ns4) {
		document[rhnOff].src = "images/rhn_ball.gif"
		document[DivText].visibility="hide"
		document["slips1Fielder"].visibility="hide"
		document["slips2Fielder"].visibility="hide"
		document["slips3Fielder"].visibility="hide"

		}

		else if (ns6) {
		document.getElementById(DivText).style.visibility = "hidden"
		document[rhnOff].src = "images/rhn_ball.gif"
		document.getElementById("slips1Fielder").style.visibility="hidden"
		document.getElementById("slips2Fielder").style.visibility="hidden"
		document.getElementById("slips3Fielder").style.visibility="hidden"
		document.getElementById(rhnColor).style.color="#000000"
		}

        else {
		document.all[rhnOff].src = "images/rhn_ball.gif"
		document.all.slips1Fielder.style.visibility="hidden"
		document.all.slips2Fielder.style.visibility="hidden"
		document.all.slips3Fielder.style.visibility="hidden"
		document.all[DivText].style.visibility="hidden"
		document.all[rhnColor].style.color="#000000"
		}

}


