 function seleccionarPresentacion() {
  document.getElementById('imgPresentacion').src='imagenes/presentacionSel.gif';
  document.getElementById('imgServicios').src='imagenes/servicios.gif';
  document.getElementById('imgContacto').src='imagenes/contacto.gif';   
 }
 
 function seleccionarServicios() {
  document.getElementById('imgPresentacion').src='imagenes/presentacion.gif';
  document.getElementById('imgServicios').src='imagenes/serviciosSel.gif';
  document.getElementById('imgContacto').src='imagenes/contacto.gif';   
 }
 
 function seleccionarContacto() {
  document.getElementById('imgPresentacion').src='imagenes/presentacion.gif';
  document.getElementById('imgServicios').src='imagenes/servicios.gif';
  document.getElementById('imgContacto').src='imagenes/contactoSel.gif';   
 } 