jQuery.noConflict();

jQuery(document).ready(init);

var link;

function init() {
	jQuery(".sombra_mapa").hide();
	jQuery(".mapa").hide();
	jQuery("#gmap").hide()
	jQuery(".link_mapa").click( function() { link = jQuery(this); show_map() });
	jQuery(".boton_cerrar").click( function() { link = jQuery(this); hide_map() });
}

function show_map() {
	
	var info = link.attr("value");
	jQuery(".mapa .contenido").html('<p style="margin:0;padding:0;margin-top:2em;font-size:1.1em;color:black;font-weight:bold;">'+info+'</p>');
	jQuery(".mapa").show();
	jQuery(".sombra_mapa").show();
	jQuery(".sombra_mapa").fadeTo('fast',0.3);
	jQuery("#gmap").show();
	jQuery("#gmap").addClass("over");
	jQuery("#gmap").addClass("map_border");
}

function hide_map() {
	jQuery("#gmap").hide();
	jQuery(".sombra_mapa").hide();
	jQuery(".mapa").hide();
}