gobutnOut = new Image

gobutnOver = new Image

gobutnOut.src = "gifs_jpgs/go_button.gif"

gobutnOver.src = "gifs_jpgs/gone_button.gif"

function imgOver(thisImg) {
	document[thisImg].src = "gifs_jpgs/" + thisImg + "_gone.gif"
}

function imgOut(thisImg) {
	document[thisImg].src = "gifs_jpgs/" + thisImg + "_go.gif"
} 


        function overBgcol(navLink)  {
            IdLink = navLink                                     

            thisColour = document.getElementById(IdLink).style

            thisColour.borderWidths = "2px,2px,2px,2px"            
            thisColour.borderColor = "#f5f5f5"
            thisColour.borderStyle = "inset"
            thisColour.backgroundColor = "#88cdf7"
                                                  
            }
            

        function outBgcol(offLink)  {
            outLink = offLink
            thisColour = document.getElementById(outLink).style

            thisColour.borderWidths = "2px,2px,2px,2px"
            thisColour.borderColor = "#f5f5f5"
            thisColour.borderStyle = "outset"
            thisColour.backgroundColor = "#d0ebfb"


             }




