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"
} 


        myPix = new Array("fashiongallery/001greenswirl.jpg","fashiongallery/002purplepants.jpg","fashiongallery/003blackpunk.jpg","fashiongallery/004blackred.jpg","fashiongallery/005-yellow-green.jpg","fashiongallery/006-ginger.jpg","fashiongallery/009-yellow-red.jpg","fashiongallery/010-orange-blue-catsuit.jpg","fashiongallery/011-matrixalex.jpg","fashiongallery/012-red-furry.jpg","fashiongallery/013-geri-matrix.jpg","fashiongallery/014-glam-gypsy.jpg","fashiongallery/015-partygirl-miranda.jpg","fashiongallery/016-colourful-split-skirt.jpg","fashiongallery/017-gold-fonda.jpg","fashiongallery/018-jeans-red.jpg","fashiongallery/019-blue-mini-pompom.jpg","fashiongallery/020-johnny-jonathan.jpg","fashiongallery/021-60s-girl.jpg","fashiongallery/022-2-jonathan.jpg","fashiongallery/023-yellow-bikini.jpg","fashiongallery/024-combat.jpg")
        thisPic = 0
        imgCt = myPix.length - 1

        function chgSlide(direction) {
                if (document.images) {
                        thisPic = thisPic + direction
                        if (thisPic > imgCt) {
                                thisPic = 0
                        }
                        if (thisPic < 0) {
                                thisPic = imgCt
                        }
                        document.myPicture.src=myPix[thisPic]
                }
        }


        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"

	if (outLink == "catLink")  {

            thisColour.backgroundColor = "#8470ff"
            }
	else {
		if (outLink == "contactLink")   {

           thisColour.backgroundColor = "#daa520"
            }

	else {
		if (outLink == "linksLink")   {

           thisColour.backgroundColor = "#66cdaa"
            }

	else {
		if (outLink == "galleryLink")   {

           thisColour.backgroundColor = "#20b2aa"
            }
	else {
		if (outLink == "feedbackLink")   {

           thisColour.backgroundColor = "#a0522d"
            }
            	else {
		if (outLink == "orderLink")   {

           thisColour.backgroundColor = "#ba55d3"
            }
            	else {
		if (outLink == "homeLink")   {

           thisColour.backgroundColor = "#da70d6"
            }
            }                        
            }
            }
            }
            }            
            }

             }





