  $(document).ready(function(){
    ruta_rel='/www';
    $("#boton_tdr").hover(
      function () {
        $(this).attr({src: ruta_rel+"/img/tdr_over.jpg"});
      }, 
      function () {
        $(this).attr({src: ruta_rel+"/img/tdr.jpg"});
      }
    );
    $("#boton_entrar").hover(
      function () {
        $(this).attr({src: ruta_rel+"/img/entrar_esp_over.jpg"});
      }, 
      function () {
        $(this).attr({src: ruta_rel+"/img/entrar_esp.jpg"});
      }
    );
    $("#boton_enter").hover(
      function () {
        $(this).attr({src: ruta_rel+"/img/entrar_eng_over.jpg"});
      }, 
      function () {
        $(this).attr({src: ruta_rel+"/img/entrar_eng.jpg"});
      }
    );
  });
