// JavaScript Document


<!--

	if (document.images) {
	bot1on = new Image();	bot1on.src = "../images/bot_grupo_on.gif";
	bot2on = new Image();	bot2on.src = "../images/bot_servicios_on.gif";
	bot3on = new Image();	bot3on.src = "../images/bot_equipo_on.gif";
	bot4on = new Image();	bot4on.src = "../images/bot_calidad_on.gif";
	bot5on = new Image();	bot5on.src = "../images/bot_enlaces_on.gif";
	bot6on = new Image();	bot6on.src = "../images/bot_calendario_on.gif";
	bot7on = new Image();	bot7on.src = "../images/bot_contacto_on.gif";
	bot8on = new Image();	bot8on.src = "../images/bot_home_on.gif";
	bot9on = new Image();	bot9on.src = "../images/bot_mapa_on.gif";
	
	bot1off = new Image();	bot1off.src = "../images/bot_grupo_off.gif";
	bot2off = new Image();	bot2off.src = "../images/bot_servicios_off.gif";
	bot3off = new Image();	bot3off.src = "../images/bot_equipo_off.gif";
	bot4off = new Image();	bot4off.src = "../images/bot_calidad_off.gif";
	bot5off = new Image();	bot5off.src = "../images/bot_enlaces_off.gif";
	bot6off = new Image();	bot6off.src = "../images/bot_calendario_off.gif";
	bot7off = new Image();	bot7off.src = "../images/bot_contacto_off.gif";
	bot8off = new Image();	bot8off.src = "../images/bot_home_off.gif";
	bot9off = new Image();	bot9off.src = "../images/bot_mapa_off.gif";

}
	
	function imgOn(imgName) {
	// if (document.images) {
	if (document[imgName])  {
	document.images[imgName].src = eval(imgName + "on.src");
	}
	
	}
	
	function imgOff(imgName) {
	// if (document.images) {
	if (document[imgName])  {
	document.images[imgName].src = eval(imgName + "off.src");
	}
	
	}
	
// -->



