/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

function initMapa(){
    var localidad = $("#localidad").html();
    var direccion = $("#direccion").html()+' '+localidad;
    var coordenadas = $("#coordenadas").html();

    carga(direccion+", spain", localidad+", spain", coordenadas, 14, "maps", "erroMap", false);
}

$(document).ready(function(){
    initMapa();
    $("#mapa").addClass("oculta");
});
