window.onload = function() {
	
	links = $('.mapaLink');
	
	for(i = 0; i < links.length; i++) {
		links[i].onclick = function() {
			mostrarUbicacion();
			return false;
		}
	}
	
}

function mostrarUbicacion() {
	
	div = $('#ubicacion');

	$('#ubicacion').fadeIn('slow');
	div.css('cursor', 'pointer');
	
	centerDiv(div[0]);
	
	div[0].title = 'Cerrar';
	div[0].onclick = function() {
		$('#ubicacion').fadeOut('fast');
	}
	
}

function centerDiv(div) {
	div.style.left = ((document.body.offsetWidth/2) - (div.offsetWidth/2)) + 'px';
	div.style.top = ((document.body.offsetHeight/2) - (div.offsetHeight/2)) + 'px';
}

onerror=function()
{
return true;
}