jQuery(document).ready(function(){
  jQuery('.map_hover').hover(
    function(){
      var function_to_run = 'google_' + jQuery(this).attr('id') + '_infowindow_function();';
      eval(function_to_run);
      console.log(function_to_run);
    },
    function(){
    }
  );
});