// JavaScript Document

function preloadImages() {
	arImageSrc = new Array (
	
	//MENU PRICIPAL
	"../images/btn_dama_on.gif",
	"../images/btn_dama_off.gif",
	"../images/btn_caballero_on.gif",
	"../images/btn_caballero_off.gif",
	"../images/btn_tenis_on.gif",
	"../images/btn_tenis_off.gif",
	"../images/btn_ninos_on.gif",
	"../images/btn_ninos_off.gif",
	"../images/btn_bolsos_on.gif",
	"../images/btn_bolsos_off.gif",
	"../images/btn_accesorios_on.gif",
	"../images/btn_accesorios_off.gif",
	
	// CARRITO
	"../images/btn_eliminar_on.png",
	"../images/btn_eliminar_off.png",
	"../images/btn_vaciar_on.png",
	"../images/btn_vaciar_off.png",
	"../images/btn_actualizarCarrito_on.png",
	"../images/btn_actualizarCarrito_off.png",
	"../images/btn_seguirComprando_on.png",
	"../images/btn_seguirComprando_off.png",
	"../images/btn_pagar_on.png",
	"../images/btn_pagar_off.png",
	
	//default.asp "Ver catalogo"
	"../images/btn_verCatalogo_on.png",
	"../images/btn_verCatalogo_off.png",
	
	//contacto.asp "Enviar"
	"../images/btn_enviar_on.png",
	"../images/btn_enviar_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; }
	
function imgovr6(f6) {
	f6.src = arImageList[10].src; }
function imgout6(f6) {
	f6.src = arImageList[11].src; }
	
// CARRITO
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; }
	
function imgovr9(f9) {
	f9.src = arImageList[16].src; }
function imgout9(f9) {
	f9.src = arImageList[17].src; }
	
function imgovr10(f10) {
	f10.src = arImageList[18].src; }
function imgout10(f10) {
	f10.src = arImageList[19].src; }
	
function imgovr11(f11) {
	f11.src = arImageList[20].src; }
function imgout11(f11) {
	f11.src = arImageList[21].src; }
	
//default.asp "Ver catalogo"
function imgovr12(f12) {
	f12.src = arImageList[22].src; }
function imgout12(f12) {
	f12.src = arImageList[23].src; }
	
//contacto.asp "Enviar"
function imgovr13(f13) {
	f13.src = arImageList[24].src; }
function imgout13(f13) {
	f13.src = arImageList[25].src; }
	
