if (document.images) {  	quienes_off = new Image(); 	quienes_off.src = "images/home/quienes_off.gif"; 	ante_off = new Image(); 	ante_off.src = "images/home/ante_off.gif"; 	reclamo_off = new Image(); 	reclamo_off.src = "images/home/reclamo_off.gif"; 	preguntas_off = new Image(); 	preguntas_off.src = "images/home/preguntas_off.gif"; 	contacta_off = new Image(); 	contacta_off.src = "images/home/contacta_off.gif";	otras_off = new Image();	otras_off.src = "images/home/otras_off.gif"; 	 	 	 	    quienes_on = new Image(); 	quienes_on.src = "images/home/quienes_on.gif"; 	ante_on = new Image(); 	ante_on.src = "images/home/ante_on.gif"; 	reclamo_on = new Image(); 	reclamo_on.src = "images/home/reclamo_on.gif"; 	preguntas_on = new Image(); 	preguntas_on.src = "images/home/preguntas_on.gif"; 	contacta_on = new Image(); 	contacta_on.src = "images/home/contacta_on.gif";	otras_on = new Image();	otras_on.src = "images/home/otras_on.gif";}function turnOn(imageName) { 	if (document.images) { 		document[imageName].src = eval(imageName + "_on.src");	}}function turnOff(imageName) { 	if (document.images) {		document[imageName].src = eval(imageName + "_off.src"); 	}}