	On0 = new Image(57,64)
	On0.src = "images/index_on_03.gif"
	Off0 = new Image(57,64)
	Off0.src = "images/index_03.gif"
	On1 = new Image(82,64)
	On1.src = "images/index_on_05.gif"
	Off1 = new Image(82,64)
	Off1.src = "images/index_05.gif"
	On2 = new Image(107,64)
	On2.src = "images/index_on_07.gif"
	Off2 = new Image(107,64)
	Off2.src = "images/index_07.gif"
	On3 = new Image(54,64)
	On3.src = "images/index_on_09.gif"
	Off3 = new Image(54,64)
	Off3.src = "images/index_09.gif"
	On4 = new Image(60,64)
	On4.src = "images/index_on_11.gif"
	Off4 = new Image(60,64)
	Off4.src = "images/index_11.gif"
	
	
	
	function preload(imgObj,imgSrc) {
	if (document.images) {
		eval(imgObj+' = new Image()')
		eval(imgObj+'.src = "'+imgSrc+'"')
	}
	
}	
preload('On0','images/index_on_03.gif')
preload('Off0','images/index_03.gif')
preload('On1','images/index_on_05.gif')
preload('Off1','images/index_05.gif')
preload('On2','images/index_on_07.gif')
preload('Off2','images/index_07.gif')
preload('On3','images/index_on_09.gif')
preload('Off3','images/index_09.gif')
preload('On4','images/index_on_11.gif')
preload('Off4','images/index_11.gif')


function changeImage(layer,imgName,imgObj) {
	if (document.images) {                        
		if (document.layers && layer!=null) eval('document.'+layer+'.document.images['+imgName+'].src = '+imgObj+'.src');
		else document.images[imgName].src = eval(imgObj+".src");
	}
}



