// JavaScript Document

function preloadImages() {
	arImageSrc = new Array (
	
	//MENU PRICIPAL
	"../images/btn_eventos_on.png",
	"../images/btn_eventos_off.png",
	"../images/btn_resultados_on.png",
	"../images/btn_resultados_off.png",
	"../images/btn_entrenamientos_on.png",
	"../images/btn_entrenamientos_off.png",
	"../images/btn_articulos_on.png",
	"../images/btn_articulos_off.png",
	"../images/btn_social_runner_on.png",
	"../images/btn_social_runner_off.png",
	
	
	//EXPERTOS
	"../images/btn_benjamin_on.jpg",
	"../images/btn_benjamin_off.jpg",
	"../images/btn_wanda_on.jpg",
	"../images/btn_wanda_off.jpg",
	"../images/btn_martin_on.jpg",
	"../images/btn_martin_off.jpg",
	
	//BOTÓN ESCRÍBELES
	"../images/btn_escribeles_on.png",
	"../images/btn_escribeles_off.png"
	
	)


	arImageList = new Array ();
	for (counter in arImageSrc) {
	        arImageList[counter] = new Image();
	        arImageList[counter].src = arImageSrc[counter];}
	}
	
	preloadImages();

//MENU PRICIPAL
function imgovr1(f1) {
	f1.src = arImageList[0].src; }
function imgout1(f1) {
	f1.src = arImageList[1].src; }
	
function imgovr2(f2) {
	f2.src = arImageList[2].src; }
function imgout2(f2) {
	f2.src = arImageList[3].src; }
	
function imgovr3(f3) {
	f3.src = arImageList[4].src; }
function imgout3(f3) {
	f3.src = arImageList[5].src; }
	
function imgovr4(f4) {
	f4.src = arImageList[6].src; }
function imgout4(f4) {
	f4.src = arImageList[7].src; }
	
function imgovr5(f5) {
	f5.src = arImageList[8].src; }
function imgout5(f5) {
	f5.src = arImageList[9].src; }
	

//EXPERTOS
function imgovr6(f6) {
	f6.src = arImageList[10].src; }
function imgout6(f6) {
	f6.src = arImageList[11].src; }
	
function imgovr7(f7) {
	f7.src = arImageList[12].src; }
function imgout7(f7) {
	f7.src = arImageList[13].src; }
	
function imgovr8(f8) {
	f8.src = arImageList[14].src; }
function imgout8(f8) {
	f8.src = arImageList[15].src; }
	
//BOTÓN ESCRÍBELES
function imgovr9(f9) {
	f9.src = arImageList[16].src; }
function imgout9(f9) {
	f9.src = arImageList[17].src; }
