var cantidad = 0; function mostrarsucursal(ciudad,ciudad2) { var direccion = jQuery("#"+ciudad).data("direccion"); var telefono = jQuery("#"+ciudad).data("telefono"); var horario = jQuery("#"+ciudad).data("horario"); var imagen = jQuery("#"+ciudad).data("imagen"); jQuery(".direccion").html(direccion); jQuery(".telefono").html(telefono); jQuery(".horarios").html(horario); jQuery(".titledirect.first").html(ciudad); jQuery(".imagen.first").html(""); jQuery(".titulosucursal").html("Sucursal "+ciudad); google_maps_5710e8ed20a83(ciudad); if(ciudad == "Tuxtla"){ direccion = jQuery("#"+ciudad2).data("direccion"); telefono = jQuery("#"+ciudad2).data("telefono"); horario = jQuery("#"+ciudad2).data("horario"); //alert(direccion+"-"+telefono+"-"+horario); jQuery("#"+ciudad2+".moresucursal .direccion").html(direccion); jQuery("#"+ciudad2+".moresucursal .telefono").html(telefono); jQuery("#"+ciudad2+".moresucursal .horarios").html(horario); //jQuery(".moresucursal .titledirect").html(ciudad2); jQuery(".moresucursal").show(); }else{ jQuery(".moresucursal").hide(); } //jQuery("#sucursaltitulo").html("Sucursal "+ciudad); //alert(h); // body... }