{

	titanOn = new Image()
	titanOn.src ="/fr/grafx/bt-titan-on.png"
	titanOff = new Image()
	titanOff.src ="/fr/grafx/bt-titan.png"
	
	atomeOn = new Image()
	atomeOn.src ="/fr/grafx/bt-atome-on.png"
	atomeOff = new Image()
	atomeOff.src ="/fr/grafx/bt-atome.png"
	
	moustiqueOn = new Image()
	moustiqueOn.src ="/fr/grafx/bt-moustique-on.png"
	moustiqueOff = new Image()
	moustiqueOff.src ="/fr/grafx/bt-moustique.png"
	
	peeweeOn = new Image()
	peeweeOn.src ="/fr/grafx/bt-peewee-on.png"
	peeweeOff = new Image()
	peeweeOff.src ="/fr/grafx/bt-peewee.png"
	
	bantamOn = new Image()
	bantamOn.src ="/fr/grafx/bt-bantam-on.png"
	bantamOff = new Image()
	bantamOff.src ="/fr/grafx/bt-bantam.png"
	
	midjetOn = new Image()
	midjetOn.src ="/fr/grafx/bt-midget-on.png"
	midjetOff = new Image()
	midjetOff.src ="/fr/grafx/bt-midget.png"
		 
}

function switchOn(imageName) {
  if (document.images)
     document.images[imageName].src = eval(imageName + 'On.src');
}
		  
function switchOff(imageName) {
  if (document.images)
     document.images[imageName].src = eval(imageName + 'Off.src');
}
