// Prevents framing
if (top != self) {
	top.location = location
}
// precache 'off' images
var offImgArray = new Array
offImgArray[0] = new Image(98,17)
offImgArray[1] = new Image(55,12)
offImgArray[2] = new Image(41,17)
offImgArray[3] = new Image(113,17)
offImgArray[4] = new Image(99,22)
offImgArray[5] = new Image(56,16)
offImgArray[6] = new Image(70,17)
offImgArray[7] = new Image(113,17)
offImgArray[8] = new Image(69,17)
offImgArray[9] = new Image(106,18)


// precache 'on' images
var onImgArray = new Array
onImgArray[0] = new Image(98,17)
onImgArray[1] = new Image(55,12)
onImgArray[2] = new Image(41,17)
onImgArray[3] = new Image(113,17)
onImgArray[4] = new Image(99,22)
onImgArray[5] = new Image(56,16)
onImgArray[6] = new Image(70,17)
onImgArray[7] = new Image(113,17)
onImgArray[8] = new Image(69,17)
onImgArray[9] = new Image(106,18)

// set image paths
offImgArray[0].src = "accueil-off.jpg"
offImgArray[1].src = "news-off.jpg"
offImgArray[2].src = "bio-off.jpg"
offImgArray[3].src = "methodes-off.jpg"
offImgArray[4].src = "projets-off.jpg"
offImgArray[5].src = "MP3s-off.jpg"
offImgArray[6].src = "radio-off.jpg"
offImgArray[7].src = "courrier-off.jpg"
offImgArray[8].src = "liens-off.jpg"
offImgArray[9].src = "boutique-off.jpg"

// set image paths
onImgArray[0].src = "accueil-on.jpg"
onImgArray[1].src = "news-on.jpg"
onImgArray[2].src = "bio-on.jpg"
onImgArray[3].src = "methodes-on.jpg"
onImgArray[4].src = "projets-on.jpg"
onImgArray[5].src = "MP3s-on.jpg"
onImgArray[6].src = "radio-on.jpg"
onImgArray[7].src = "courrier-on.jpg"
onImgArray[8].src = "liens-on.jpg"
onImgArray[9].src = "boutique-on.jpg"


// link rollovers and status bar descriptions
function on(i) {
	document.images[i+1].src = onImgArray[i].src
}
function off(i) {
	document.images[i+1].src = offImgArray[i].src
}
function statusMsg(msg) {
	window.status = msg
	return true
}
function clearStatus () {
	window.status = ""
	return true
}
