browser = (((navigator.appName == "Netscape") && (parseInt(navigator.appVersion) >= 3 )) || ((navigator.appName == "Microsoft Internet Explorer") && (parseInt(navigator.appVersion) >= 4 )))
if ( browser) {
	normal = new MakeArray(26)
	over = new MakeArray(26)
	picture = new MakeArray(26)
	blurb = new MakeArray(27)
	normal[0].src = "Graphics/ButtonBehindTheEyes.GIF"
	normal[1].src = "Graphics/ButtonAmyGrantChristmasDe.GIF"
	normal[2].src = "Graphics/ButtonOfficialSites.GIF"
	over[0].src = "Graphics/ButtonBehindTheEyes1.GIF"
	over[1].src = "Graphics/ButtonAmyGrantChristmasDe1.GIF"
	over[2].src = "Graphics/ButtonOfficialSites.GIF"
	blurb[0] = "The official Amy Grant Behind The Eyes website"
	blurb[1] = "The official Amy Grant Christmas website"
	blurb[2] = "Official Sites ..."
	blurb[26] = ""
	}

	function MakeArray(n) {
		this.length = n
		for (var i = -1; i<=n; i++) {
		this[i] = new Image()
		}
	return this
	}

	function msover(num) {
		if ( browser) {
		document.images[num].src = over[num].src
		window.status = blurb[num]
		}
	}

	function msout(num) {
		if ( browser) {
		document.images[num].src = normal[num].src
		window.status = blurb[26]
		}
	}
