var arrImages=Array();




arrImages["inicio"]		=Array("images/sections/header/inicio_off.jpg","images/sections/header/inicio_on.jpg");
arrImages["circuits"]		=Array("images/sections/header/circuits_off.jpg","images/sections/header/circuits_on.jpg");
arrImages["reservaciones"]	=Array("images/sections/header/reservaciones_off.jpg","images/sections/header/reservaciones_on.jpg");
arrImages["testimonios"]	=Array("images/sections/header/testimonios_off.jpg","images/sections/header/testimonios_on.jpg");
arrImages["contacto"]	=Array("images/sections/header/contactenos_off.jpg","images/sections/header/contactenos_on.jpg");	
		

function swapObjectImage(obj,sta){
	if(obj!=null){
		swapImage(obj.id,sta);
		//alert('SE cambio la imagen');
	}
	else{
		//alert('Objeto nulo');
	}
	
}


function swap(o,sta){
	swapObjectImage(o,sta);
}

function swapImage(id,sta){
	var o = document.getElementById(id);
	var imgs = arrImages[id];
	//alert(id);
	if(id!=null && imgs!=null){
		//alert(2);
		o.src = imgs[sta];
	}
	
	
}
